色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

vue dicts選項

謝彥文1年前9瀏覽0評論

在Vue中提供了一個叫做dicts選項的屬性,它可以讓我們定義一些字典表來進行訪問。分別是在組件的data、computed、methods、watch和$refs中,我們都可以使用它來進行訪問。下面我們來進行一些實際的代碼舉例。

Vue.component('demo-cp', {
data () {
return {
dict: {
1: 'Hello',
2: 'World'
}
}
},
computed: {
reversedDict () {
return Object.entries(this.dict)
.map(([key, value]) =>[value, key])
.reduce((res, [key, value]) =>{
res[key] = res[key] || []
res[key].push(value)
return res
}, {})
}
},
methods: {
getDictValue (key) {
return this.dict[key]
}
},
watch: {
dict (newVal, oldVal) {
console.log(`dict changed from ${JSON.stringify(this.dict)}`)
}
},
mounted () {
console.log(`Input ref: ${this.$refs.input}`)
},
template: `

reversedDict:

{{ reversedDict }}

getDictValue(2):

{{ getDictValue(2) }}

` })

上面的代碼展示了如何在Vue中使用dicts選項。我們定義了一個叫做demo-cp的組件,其中定義了一個data屬性dict,用于存儲一個字典表。在computed屬性中,我們實現了一個reversedDict方法,用來將字典表中的鍵值對進行反轉。在methods屬性中,我們定義了一個getDictValue方法,用來通過傳入的鍵獲取相應的值。在watch屬性中,我們監聽了dict屬性的變化,并在變化時輸出相應的信息。在mounted生命周期中,我們獲取了一個輸入框的引用。

通過上面的例子我們可以看到,dicts選項可以很方便的定義字典表,并在Vue組件的各處使用。在實際開發中,它可以幫助我們提高代碼的復用率并且讓代碼更加易于維護。