为了账号安全,请及时绑定邮箱和手机立即绑定

使用module.exports导出报错


	function save(items) {
		window.localStorage.setItem('todolist',JSON.stringify(items))
	}
	function get(){
		return JSON.parse(window.localStorage.getItem('todolist'))
	}
module.exports =  {
	save: save,
	get: get
}


为什么我在store.js 用commonsjs方式module.exports导出接口就报Uncaught TypeError: Cannot assign to read only property 'exports' of object '#'错误

正在回答

1 回答

es6就不用module.exports了 建议直接查看es6的export的相关语法http://es6.ruanyifeng.com/#docs/module#export-命令

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
vue.js入门基础
  • 参与学习       209716    人
  • 解答问题       677    个

本门为vuejs入门教程,详细的讲解加实战,可以帮你进入vuejs的大门

进入课程

使用module.exports导出报错

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信