feat: 路由

This commit is contained in:
手瓜一十雪
2024-11-15 10:41:55 +08:00
parent f83bf197d2
commit 9b20e9db29
7 changed files with 44 additions and 18 deletions

View File

@@ -1,25 +1,11 @@
<!-- <template>
<div id="app">
<LoginForm />
</div>
</template>
<script setup>
import LoginForm from './components/QQ.vue';
</script> -->
<template>
<div id="app">
<QQLogin />
<router-view />
</div>
</template>
<script>
import QQLogin from './components/QQLogin.vue';
export default {
name: 'App',
components: {
QQLogin
}
name: 'App'
};
</script>