jhzh
2025-04-03 db12897dc68c68d40c557aa59ad78022e2b30ac2
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