# 快速上手
# 引入
import {Button, Input} from 'xin-li'
1
# 注册组件
export default {
components: {
"xin-button": Button,
"xin-input": Input
},
}
1
2
3
4
5
6
2
3
4
5
6
# 使用
<template>
<div>
<xin-button>默认按钮</xin-button>
<xin-input></xin-input>
</div>
</template>
1
2
3
4
5
6
2
3
4
5
6
# 效果
← 安装 Button - 按钮 →