1
jhzh
2025-04-20 d157d0892f1ab5517dbe3a08328ccb9c4e446615
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import Vue from 'vue';
// import Toast from '../wxcomponents/vant/toast/toast';
import Dialog from '../wxcomponents/vant/dialog/dialog';
// Vue.prototype.$toast = Toast
Vue.prototype.$toast = (msg) => {
    uni.showToast({
        title: msg,
        icon: "none"
    });
}
Vue.prototype.$toast.success=(msg)=>{
    uni.showToast({
        title: msg,
        icon: "success"
    });
}
Vue.prototype.$dialog = Dialog