# 组件文档
# 安装
yarn add vue-general-components
在 main.js 中写入以下内容:
import vgc from "vue-general-components";
import "vue-general-components/lib/index.css";
Vue.use(vgc);
# 代码实例
下面是hello world 的 vue 组件
This is 你好 World
这是底部说明文字
<hello-world :message="World"></hello-world>
# 参数
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
message | 信息 | string | - | "world" |
← 介绍