# 快速上手

# 引入相关资源

import {Button} from "wbh-ui";
import "wbh-ui/dist/index.css";
export default {
  name: "ComponentName",
  components: {
    "g-button": Button,
  },
}      

# 使用

<template>
  <div>
    <g-button>按钮</g-button>
  </div>
</template>