txw/local-nodemodules/@cssyq/ggzc-web
2026-04-03 14:32:29 +08:00
..
dist fix: 依赖问题 2026-04-03 14:32:29 +08:00
node_modules/.bin fix: 依赖问题 2026-04-03 14:32:29 +08:00
package.json fix: 依赖问题 2026-04-03 14:32:29 +08:00
README.md fix: 依赖问题 2026-04-03 14:32:29 +08:00

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>