美文网首页
vue混入mixin

vue混入mixin

作者: 黑白说程序 | 来源:发表于2020-10-23 21:55 被阅读0次

    mixin主要作用是提取组件中相同的代码,对生命周期、methods、components、data都可以做提取,也可以说他也算一种公共变量

    exports const  functionmixin={
    data() {
        return {
           name:""
        }},
    created(){
      function(){
      console.log('我是混入')
    }
    },components:{
      basecom
    }
    }
    import functionmixin from ‘./until.js’ //引入
    mixin:[functionmixin ]  // 使用方式

    相关文章

      网友评论

          本文标题:vue混入mixin

          本文链接:https://www.haomeiwen.com/subject/kclbmktx.html