2025-04-14 18:05:15 +08:00

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>