如何把vue中state的值赋值给data

如何把vue中state的值赋值给data


慕慕森
浏览 2015回答 2
2回答

函数式编程

你应该把你获取数据的代码放到 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;}}}

慕姐4208626

<template><div v-progress="{this.SET:SET}"></div></template><script>methods:{...mapMutations(['SET'])},directives:{inserted:function(el , binding){//通过这个SET方法,传个参数,去改变值binding.value.SET(1);}}</script>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Vue.js