91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue3和vue2中mixins如何使用

發布時間:2022-05-31 10:45:17 來源:億速云 閱讀:1743 作者:zzz 欄目:開發技術

這篇文章主要介紹“vue3和vue2中mixins如何使用”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“vue3和vue2中mixins如何使用”文章能幫助大家解決問題。

前言

vue的mixins里面放公共的js方法,但是vue3之后使用方法還是有些改變,這里來羅列下他們的區別。

Vue2

1、封裝的mixin方法

vue3和vue2中mixins如何使用

export const homeSensors = {
  mounted() {
    this.$sensors.track('teacherHomePageview')
  },
    methods:{
        abc(){
            alert(1)
        }
    }
}

2、具體頁面引用 abc.vue

import { homeSensors } from '@/mixins/sensorsMixin'
export default {
  mixins: [taskAssign],
 
}

3、具體頁面使用 abc.vue

created() {
    this.abc()   //mixin里面的具體方法
  },

vue3官方入口(個人建議,不要再mixin用setup)

一、封裝mixin里面具有setup

注意:

vue3的官方統計mixin方法有兩種,全局和具體組件使用,均沒有支持在mixin的js文件中使用setup,    在里面直接寫入setup階段,是不能直接獲取到的,如果我們想要用setup,需要換一種思路,引入js的思路

具體步驟

1、封裝方法  common.js 

vue3和vue2中mixins如何使用

//setup中調用的mixins方法
import { computed, ref } from 'vue'
export const common =  {
  alertCon(content) {
    if(content){
      alert(content)
    }else{
      alert(1)
    }
  },
  setup(){
    const count = ref(1)
    const plusOne = computed(() => count.value + 1)
    function hello(){
      console.log('hello mixin'+plusOne.value)
    }
    return{
      count,
      plusOne,
      hello
    }
  }
}

2、頁面具體使用

 // vue頁面中引入
import {common} from '../../../mixins/common'
export default{
  setup(){
    common.alertCon()
    const {count,plusOne,hello} = common.setup()
    hello()
    console.log(count.value, plusOne.value)
  }
}

二、不需要在mixin里面使用setup  (官方支持用法)

官方入口:點我

Mixin 提供了一種非常靈活的方式,來分發 Vue 組件中的可復用功能。一個 mixin 對象可以包含任意組件選項。當組件使用 mixin 對象時,所有 mixin 對象的選項將被“混合”進入該組件本身的選項。

例子:

// 定義一個 mixin 對象
const myMixin = {
  created() {
    this.hello()
  },
  methods: {
    hello() {
      console.log('hello from mixin!')
    }
  }
}
 
// 定義一個使用此 mixin 對象的應用
const app = Vue.createApp({
  mixins: [myMixin]
})
 
app.mount('#mixins-basic') // => "hello from mixin!"
具體使用

1、封裝方法  common.js

vue3和vue2中mixins如何使用

//setup中調用的mixins方法
import { computed, ref } from 'vue'
export const common =  {
   mounted(){
    alert('我是mounted的方法')
  },
}

2、頁面具體使用

import {common} from '../../../mixins/common'
mixins: [common],

3、頁面效果:刷新以后

vue3和vue2中mixins如何使用

關于“vue3和vue2中mixins如何使用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

胶南市| 麦盖提县| 嘉兴市| 普兰店市| 沈阳市| 梁河县| 永登县| 新沂市| 南木林县| 滕州市| 娱乐| 福州市| 东乌珠穆沁旗| 新龙县| 哈密市| 高邮市| 盐边县| 明星| 绥中县| 安吉县| 沁源县| 彩票| 青铜峡市| 齐齐哈尔市| 金山区| 方正县| 宜川县| 九龙县| 邢台市| 黔东| 汶川县| 盱眙县| 抚远县| 息烽县| 商南县| 资中县| 开江县| 常熟市| 金坛市| 娄烦县| 马边|