11 lines
213 B
Vue
11 lines
213 B
Vue
<template>
|
|
<el-alert :closable="false" title="菜单一级" />
|
|
</template>
|
|
<script setup lang="ts">
|
|
defineOptions({ name: "MultiLevel1" });
|
|
|
|
onMounted(() => {
|
|
console.log("MultiLevel1 mounted");
|
|
});
|
|
</script>
|