vue-data-store

时间:2024-05-26 03:43:21
【文件属性】:

文件名称:vue-data-store

文件大小:125KB

文件格式:ZIP

更新时间:2024-05-26 03:43:21

JavaScript

Vue数据存储 简单的Vue全球商店 安装 npm install vue-data-store 建立店铺 // store.js // Vue 3 import createStore from 'vue-data-store/hook' // Vue 2 // import createStore from 'vue-data-store' const store = createStore ( { count : 1 , arr : [ ] } ) export default store 使用商店数据 import store from './store' //Vue 3 export default { setup ( ) { const count = store ( 'count' ) const arr = store ( 'arr' )


【文件预览】:
vue-data-store-master
----package.json(1KB)
----package-lock.json(463KB)
----src()
--------App.vue(955B)
--------main.js(90B)
--------store.js(116B)
--------lib()
--------Component.vue(902B)
----.gitignore(231B)
----public()
--------index.html(611B)
--------favicon.ico(4KB)
----README.md(1KB)
----babel.config.js(73B)

网友评论