欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

readonly() vue

錢浩然2年前8瀏覽0評論

Vue中有一個特殊的修飾符,叫做readonly。當在組件內部使用該修飾符時,它會將當前組件的所有數(shù)據(jù)和屬性都設置為只讀,禁止對其進行修改。

Vue.component('example', {
data () {
return {
name: 'John',
age: 28,
email: 'john@example.com'
}
},
computed: {
info () {
return 'Name: ' + this.name + ' / Age: ' + this.age + ' / Email: ' + this.email
}
},
methods: {
changeName () {
this.name = 'Mary' // this will result in a warning
}
},
template: `

{{ info }}

` })

在上面的例子中,我們定義了一個名為example的組件,并在其中定義了一個數(shù)據(jù)對象。我們在computed屬性中定義了一個計算屬性info,用來返回當前數(shù)據(jù)對象中的所有屬性。我們還定義了一個changeName方法,用來修改數(shù)據(jù)對象中的name屬性。

現(xiàn)在,我們想要將組件中所有的數(shù)據(jù)和方法都設置為只讀,以便在運行時防止意外修改。我們可以使用Vue的readonly修飾符來實現(xiàn)這一點:

Vue.component('example', {
data () {
return {
name: 'John',
age: 28,
email: 'john@example.com'
}
},
computed: {
info () {
return 'Name: ' + this.name + ' / Age: ' + this.age + ' / Email: ' + this.email
}
},
methods: {
changeName () {
console.warn('Oops! Cannot change name!')
}
},
template: `

{{ info }}

`, readonly: true // set the component as readonly })

現(xiàn)在,我們在組件的定義中添加了readonly:true選項,來將組件設置為只讀狀態(tài)。此時,如果我們試圖調用changeName方法來修改數(shù)據(jù)對象中的name屬性,Vue會在控制臺中給出一個警告,并拒絕我們的修改請求。