0.1.0 • Published 5 years ago

yanzu123456-ui v0.1.0

Weekly downloads
6
License
-
Repository
-
Last release
5 years ago
  • 初始化项目
vue create demo
  • 安装组件库
npm install yanzu-ui
  • 全局导入
import YanzuUI from 'yanzu-ui'
import 'yanzuui/lib/yanzuui.css'

Vue.use(YanzuUI)
  • 使用组件
<template>
  <div id="app">
    <hm-form :model="model" label-width="100px">
      <hm-form-item label="用户名">
        <hm-input placeholder="请输入用户名" v-model="model.username"></hm-input>
      </hm-form-item>
      <hm-form-item label="选择">
        <hm-switch v-model="model.active"></hm-switch>
      </hm-form-item>
    </hm-form>
  </div>
</template>

<script>
export default {
  name: 'App',
  data() {
    return {
      model: {
        username: '',
        active: true
      }
    }
  }
}

···
0.1.0

5 years ago