11
jhzh
2025-04-07 52b00599d3b8359549ac8bcfbbb63f6578388121
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