mixins简单使用

混入 (mixins) 是一种分发 Vue 组件中可复用功能的非常灵活的方式。混入对象可以包含任意组件选项。当组件使用混入对象时,所有混入对象的选项将被混入该组件本身的选项。
这里我通过一个小demo来实现功能:

目录结构:
mixins简单使用_第1张图片

最外面的index.vue

<template>
  <div class="MininsMin">
    <div style="color:red">{{message}}---{{foo}}---{{name}}</div>
    <div style="color:green">{{addString}}</div>
  </div>
</template>
<script>
// 1- 所有混入对象的选项将被混入该组件本身的选项;
// 2- 同名钩子函数将混合为一个数组,因此都将被调用。另外,混入对象的钩子将在组件自身钩子之前调用;
// 3- methods, components 和 directives,将被混合为同一个对象。两个对象键名冲突时,取组件对象的键值对。
import mixin from './data/index'
export default {
  mixins: [mixin],
  name: 'MininsMin',
  data: function () {
    return {
      message: 'goodbye',
      bar: 'def'
    }
  },
  created: function () {
    console.log(this.$data)
    console.log('组件钩子被调用')
  },
  computed: {
    addString () {
      return `${this.name} and ${this.age}`
    }
  }
}
</script>
<style lang="less" scope>
</style>

里面的index.vue

<script>
import one from './one'
import two from './two'
var mixin = {
  ...one,
  ...two
}
export default mixin
</script>

里面的one.vue

<script>
var one = {
  data: function () {
    return {
      message: 'hello',
      foo: 'abc',
      name: '马优晨'
    }
  },
  created: function () {
    console.log('one 混入对象的钩子被调用')
  }
}

export default one
</script>

里面的two.vue

<script>
var two = {
  data: function () {
    return {
      name: '小优晨',
      age: 108,
      foo: 'efg',
      sex: 'man'
    }
  },
  created: function () {
    console.log('two 混入对象的钩子被调用')
  }
}

export default two
</script>

效果图如下:
mixins简单使用_第2张图片

你可能感兴趣的:(vue)