# 安装

# 通过 npm 安装

Vue 脚手架中使用 Mind UI Vue 时,可以通过 npm 进行安装:

npm i mind-ui-vue -S

# 使用示例

使用组件(以 button 组件为例)

<m-button type="primary" @click="handleButtonClick">按钮</m-button>
method: {
	handleButtonClick() {
		console.log('button click')
	}
}