猿问
如何把vue中state的值赋值给data
如何把vue中state的值赋值给data
MM们
浏览 713
回答 2
2回答
LEATH
你应该把你获取数据的代码放到 created 或者 ready这些Vue的生命周期里。 例如require('../../../../res.js');export default {data() {return (noticeList: [])},created: function(){var self = this;res.notice.get_list(null, function(error, notices){self.noticeList = notices;}}}
0
0
0
米脂
<template><div v-progress="{this.SET:SET}"></div></template><script>methods:{...mapMutations(['SET'])},directives:{inserted:function(el , binding){//通过这个SET方法,传个参数,去改变值binding.value.SET(1);}}</script>
0
0
0
随时随地看视频
慕课网APP
相关分类
Vue.js
我要回答