💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## State提供唯一的公共数据源,所有共享的数据都要统一放到Store的State中进行存储。 ~~~ onst store = new Vuex.Store({ state: { count:0 //这一部分就是state值 }, mutations: { }, actions:{ } }) ~~~ ## 访问值的语法: ## this.$store.state.全局数据名称 案例: ``` this.$store.state.count ``` ![](https://img.kancloud.cn/f1/af/f1af060d251f355377d8ef7c1e9c86a9_1519x619.png) 第二种显示方式: ![](https://img.kancloud.cn/89/48/8948ec4aadfb437df0e49f286df3a9cf_1498x1102.png)