vue引用vant组件库,一个页面同时绑定多个popup弹框

1、h5 

          
配送方式
邮寄
发票
电子普通发票/个人
内容1
内容2

2、js:

    import Vue from 'vue';
    import {Popup} from 'vant';


    Vue.use(Popup);

methods: {
     //弹框 tangyk
    showPopup() {
        this.showPS = true;
    },
    showPopup2() {
        this.showFP = true;
    },

},
data() {
    return {
    //配送和发票弹框 tangyk
    showPS: false,
    showFP: false,
    };
}

 

 

你可能感兴趣的:(vue,vue)