iview 中如何按需加载Moda

iview文档:https://www.iviewui.com/components/modal

第一步使用modal组件,如何在我需要的时候在加载内容?
初始值:isShow=false

使用v-if指令
  

在使用时再让isShow=true,这样dom就会重新渲染
如何此时addUser=true的话,你会看不到动画效果的,因为这存在一个异步
需要dom加载完成后操作

 const that = this;
 this.isShow = true;
     this.$nextTick(function () {
         that.addUser =true;
     })

引入

const addUser =()=>import('xx.js');
components:{
        "add-user":addUser
    },

还有一步:

 output:{chunkFilename: 'js/[name].js',}

你可能感兴趣的:(iview)