# uniapp 小程序 框架 **Repository Path**: johnjobson/uniapp-applet-framework ## Basic Information - **Project Name**: uniapp 小程序 框架 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-27 - **Last Updated**: 2023-02-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: uniapp项目包, uview1x框架 ## README # README.md ```js git remote add origin https://gitee.com/johnjobson/uniapp-applet-framework.git ``` ## uniapp 项目框架 [uview](https://www.uviewui.com) ## 使用手册 ### vuex 1. 注册 在项目根目录的 `store\index.js` 中, 添加一下内容 ``` state: { vuex_version: '1.0.0', vuex_user: { name: '白居易' } } ``` 2. 赋值 ``` this.$u.vuex('vuex_version', '1.0.1'); ``` 3. 获取 ```con {{vuex_version}} // html console.log(this.vuex_version) // js ```