首页 > 问答 > 正文
为什么const 变量名 = new Vuex.Store({});用 this.$变量名 就不能拿到定义的数据,但是如果变量名是store就可以呢?
欧阳克2017-07-05 11:10:19
1
2
<code class="javascript">const a = new Vuex.Store({})
<code
class
=
"javascript"
>
const
a =
new
Vuex.Store({})
Object.defineProperty(Vue.prototype, '$a', {value: this.$store})</code>
Object.defineProperty(Vue.prototype,
'$a'
, {value: this.
$store
})</code>
不过这样就多此一举了
PHP中文网2017-07-05 11:10:19
参照这个官方的例子:
https://jsfiddle.net/n9jmu5v7...
实际上你把 store 更改为其它名称是没有影响的。
store