美文网首页
vue mixin(混入)

vue mixin(混入)

作者: 小蜗牛的碎碎步 | 来源:发表于2020-06-19 15:39 被阅读0次
    目的

    增强组件功能的可复用性,一个混入对象可以包含任意组件选项

    <template>
      <div class="box">
        mixin测试
      </div>
    </template>
    
    <script>
    const testMixin = {
      methods: {
        demo() {
          console.log(222222);
        },
      },
    };
    
    export default {
      data() {
        return {};
      },
      mixins: [testMixin],
      created() {
        this.demo(); // 222222
      },
      methods: {},
    };
    </script>
    
    <style lang="less">
      .box {
        font-size: 16px;
      }
    </style>
    
    

    相关文章

      网友评论

          本文标题:vue mixin(混入)

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