1.0.13 • Published 2 years ago

vant3-generator v1.0.13

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

基于vant3封装的表单生成器

使用文档:vant3-generator

安装

  • 步骤 1: 安装依赖

      # 选择一个你喜欢的包管理器
    
      # NPM
      $ npm install vant@3.6.11 vant3-generator --save
    
      # Yarn
      $ yarn add vant@3.6.11 vant3-generator
    
      # pnpm
      $ pnpm install vant@3.6.11 vant3-generator
  • 步骤 2: 引入依赖

全局注册

import App from './App.vue'
import 'vant/lib/index.css';

import { FormGenerator } from 'vant3-generator'

const app = createApp(App)

app.component('FormGenerator', FormGenerator);

app.mount('#app')

按需引入

<template>
  <FormGenerator :model="form" :formOption="formOption" />
</template>
<script lang="tsx" setup>
import { FormGenerator } from 'vant3-generator'
// ...
</script>
1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.11

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago