13 lines
292 B
Vue
13 lines
292 B
Vue
<template>
|
|
<div>
|
|
<div>三级-菜单-01 页面缓存</div>
|
|
<a-input :style="{ width: '320px' }" placeholder="请输入内容" allow-clear v-model="form" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const form = ref("");
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|