可以播放了

This commit is contained in:
algerkong
2021-07-20 22:46:18 +08:00
parent bb1bea4002
commit b55af4babd
7 changed files with 248 additions and 85 deletions
+8 -1
View File
@@ -21,6 +21,13 @@
<script lang="ts" setup>
import { onMounted, ref } from "@vue/runtime-core";
import type { PropType } from "vue";
interface AppMenuItem {
href: string;
icon: string;
text: string;
}
const props = defineProps({
isText: {
@@ -36,7 +43,7 @@ const props = defineProps({
default: '#aaa'
},
menus: {
type: Array,
type: Array as PropType<AppMenuItem[]>,
default: []
}
})