29 lines
398 B
Vue
29 lines
398 B
Vue
<template>
|
|
<view>
|
|
<u-toast ref="uToast"></u-toast>
|
|
<u-button type="primary" :plain="true" :hairline="true" text="细边" @click="asd"></u-button>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {}
|
|
},
|
|
methods: {
|
|
asd() {
|
|
this.$refs.uToast.show({
|
|
type: "loading",
|
|
title: "正在加载"
|
|
})
|
|
}
|
|
},
|
|
onReady() {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style> |