vue简单获取全局变量

1.store目录下的index.js用来存储数据和方法

import Vue from 'vue'
import Vuex from 'vuex'

Vue.use(Vuex)

export default new Vuex.Store({
  // 存储数据
  state: {
    school:"卢本伟大学"

  },
  // 操作数据
  mutations: {
  },
  // 响应组件动作
  actions: {
  },
  modules: {
  }
})

在state中村塾数据 school值为卢本伟大学,

 

2.调用

<template>
    <div>{{ $store.state.school}}</div>
</template>

直接填写对应数据位置即可。

 

posted @ 2022-02-28 10:07  Hello霖  阅读(1569)  评论(0编辑  收藏  举报