#author("2022-09-02T11:03:25+08:00","default:Admin","Admin")
#author("2022-09-02T11:03:37+08:00","default:Admin","Admin")
[[Vue]]

&color(red){※前提条件:本文基于 Vue 2.0 创作};
#contents

* 变量 [#ce11acca]

封装组件内data变量不能以“_”开头,以 _ 或 $ 开头的属性将不会被组件实例代理,因为它们可能和 Vue 的内置属性、API 方法冲突。你必须以 this.$data._property 的方式访问它们。

#codeprettify{{
data() {
  return {
    _dataSource: []
  }
},
}}

官网参考

 https://cn.vuejs.org/api/options-state.html#data

#hr();
コメント:
#comment_kcaptcha

トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS