electron vue教程electron-store本地储存数据elelctron-store
使⽤
npm i elelctron-store
设置 electron-vue 的运⾏环境
在项⽬根路径下新增 fig.js
pluginOptions:{
electronBuilder:{
nodeIntegration:true
}
},
}
直接在项⽬引⽤
<template>
<div></div>
</template>
<script>
import Store from"electron-store";
const store =new Store();
store.set('hello','word')
<('hello')
// word
export default{
components:{},
data(){
return{
};
},
methods:{
},
mounted(){},
destroyed(){},
}
</script>
<style scoped>
</style>
electron 11x 以上版本注意
在 electron 主进程中执⾏以下代码
import Store from"electron-store";
Store.initRenderer()
否则会报错 Electron Store: You need to call '.initRenderer()'from the main process.

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。