This commit is contained in:
2024-01-22 17:33:01 +08:00
parent 372a23b7e7
commit 7591b065d3
7 changed files with 87 additions and 28 deletions

24
src/desktop/TestPanel.vue Normal file
View File

@@ -0,0 +1,24 @@
<script lang="ts" setup>
const count = 5
</script>
<template>
<n-flex vertical>
<n-flex>
<n-button>增加5个</n-button>
<n-button>运行看看</n-button>
<n-button type="primary">生成并下载</n-button>
</n-flex>
<n-flex vertical>
<n-flex v-for="it in count" :key="it">
<n-flex vertical>
<span>{{ it }}.in</span>
<n-input type="textarea" />
</n-flex>
<n-flex vertical>
<span>{{ it }}.out</span>
<n-input type="textarea" />
</n-flex>
</n-flex>
</n-flex>
</n-flex>
</template>