当前位置: 移动技术网 > IT编程>脚本编程>vue.js > vue mixins组件复用的几种方式(小结)

vue mixins组件复用的几种方式(小结)

2017年12月12日  | 移动技术网IT编程  | 我要评论

audiodg.exe,草把做灯的歇后语,艾瑞币

最近在做项目的时候,研究了mixins,此功能有妙处。用的时候有这样一个场景,页面的风格不同,但是执行的方法,和需要的数据非常的相似。我们是否要写两种组件呢?还是保留一个并且然后另个一并兼容另一个呢?

不管以上那种方式都不是很合理,因为组件写成2个,不仅麻烦而且维护麻烦;第二种虽然做了兼容但是页面逻辑造成混乱,必然不清晰;有没有好的方法,有那就是用vue的混合插件mixins。混合在vue是为了提出相似的数据和功能,使代码易懂,简单、清晰。

1.场景

假设我们有几个不同的组件,它们的工作是切换状态布尔、模态和工具提示。这些提示和情态动词不有很多共同点,除了功能:他们看起来不一样,他们不习惯相同,但逻辑是相同的。

//弹框
const modal = {
 template: '#modal',
 data() {
  return {
   isshowing: false
  }
 },
 methods: {
  toggleshow() {
   this.isshowing = !this.isshowing;
  }
 },
 components: {
  appchild: child
 }
}

//提示框
const tooltip = {
 template: '#tooltip',
 data() {
  return {
   isshowing: false
  }
 },
 methods: {
  toggleshow() {
   this.isshowing = !this.isshowing;
  }
 },
 components: {
  appchild: child
 }
}

上面是一个弹框和提示框,如果考虑做2个组件,或者一个兼容另一个都不是合理方式。请看一下代码

const toggle = {
 data() {
  return {
   isshowing: false
  }
 },
 methods: {
  toggleshow() {
   this.isshowing = !this.isshowing;
  }
 }
}

const modal = {
 template: '#modal',
 mixins: [toggle],
 components: {
  appchild: child
 }
};

const tooltip = {
 template: '#tooltip',
 mixins: [toggle],
 components: {
  appchild: child
 }
};

用mixins引入toggle功能相似的js文件,进行混合使用

2.可以合并生命周期

//mixin
const hi = {
 mounted() {
  console.log('this mixin!')
 }
}

//vue组件
new vue({
 el: '#app',
 mixins: [hi],
 mounted() {
  console.log('this vue instance!')
 }
});

//output in console
> this mixin!
> this vue instance!

先输出的是mixins的数据

3、可以全局混合(类似已filter)

vue.mixin({
 mounted() {
  console.log('hello from mixin!')
 },
 method:{
   test:function(){
   }
  }
})

new vue({
 el: '#app',
 mounted() {
  console.log('this vue instance!')
 }
})

会在每一个组件中答应周期中的log,同时里面的方法,类似于vue的prototype添加实例方法一样。

var install = function (vue, options) {
 // 1. 添加全局方法或属性
 vue.myglobalmethod = function () {
  // 逻辑...
 }
 // 2. 添加全局资源
 vue.directive('my-directive', {
  bind (el, binding, vnode, oldvnode) {
   // 逻辑...
  }
  ...
 })
 // 3. 注入组件
 vue.mixin({
  created: function () {
   // 逻辑...
  }
  ...
 })
 // 4. 添加实例方法
 vue.prototype.$mymethod = function (options) {
  // 逻辑...
 }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持移动技术网。

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网