|
@@ -1,26 +0,0 @@
|
|
|
-<!-- -->
|
|
|
-<template>
|
|
|
- <div>
|
|
|
- <CtForm ref="CtFormRef" class="mt-15" :items="formItems" style="width: 900px;margin: 0 auto"></CtForm>
|
|
|
- </div>
|
|
|
-</template>
|
|
|
-
|
|
|
-<script setup>
|
|
|
-import CtForm from '@/components/CtForm/index.vue'
|
|
|
-import { ref } from 'vue'
|
|
|
-defineOptions({ name:'personal-index'})
|
|
|
-
|
|
|
-const formItems = ref({
|
|
|
- options: [
|
|
|
- {
|
|
|
- type: 'cascade',
|
|
|
- key: 'id',
|
|
|
- value: '',
|
|
|
- label: '测试 *',
|
|
|
- rules: [v => !!v || '请输入测试内容']
|
|
|
- },
|
|
|
- ]
|
|
|
-})
|
|
|
-</script>
|
|
|
-<style lang="scss" scoped>
|
|
|
-</style>
|