18 lines
238 B
Vue
18 lines
238 B
Vue
<template>
|
|
<view class="">
|
|
<uni-forms :modelValue="formData">
|
|
|
|
</uni-forms>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref, reactive } from 'vue';
|
|
|
|
const formData = reactive({
|
|
|
|
})
|
|
</script>
|
|
|
|
<style scoped lang="scss"></style>
|