mirror of
https://github.com/ccmjga/zhilu-admin
synced 2026-03-16 14:43:42 +08:00
12 lines
209 B
Vue
12 lines
209 B
Vue
<script setup lang="ts">
|
|
import { RouterLink, RouterView } from "vue-router";
|
|
import Alert from "./components/Alert.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<RouterView />
|
|
<Alert/>
|
|
</template>
|
|
|
|
<style scoped></style>
|