txw/local-nodemodules/@cssyq/ggzc-web
..
dist
node_modules/.bin
package.json
README.md

GGZC Web Component Library

使用GgzcWeb

Vue.use(GgzcWeb, {store});

使用扩展配置

<template>
  <div id="app">
    <div>{{ MH_APP_NAME }}</div>
  </div>
</template>

<script>
import Vue from 'vue';
import {mapState} from "vuex";

export default Vue.extend({
  computed: {
    ...mapState('settings', ['MH_APP_NAME']),
  }
});
</script>