[新增] checkbox 组件 待完成 menu 组件

This commit is contained in:
就眠仪式
2021-09-30 01:44:02 +08:00
parent 14908eea6a
commit e65a4e7588
15 changed files with 307 additions and 23 deletions

View File

@@ -1,7 +1,14 @@
<template>
<dd><a href="">选项</a></dd>
<dd>
<a href="">{{ title }}</a>
</dd>
</template>
<script setup name="LayMenuChildItem" lang="ts">
import { defineProps } from 'vue'
const props =
defineProps<{
title: string
}>()
</script>