vue之store中屬性更新用法

//1.首先定義store對象下的屬性測試 state: { data:'測試數據' } // 2.定義更改data數據的方法this mutations: { updatedata ( state , p ) { state. data = p } } //3.在組件中調用spa this.$store. commit( 'updatedata', '我是要更新的數據');
相關文章
相關標籤/搜索