mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
25 lines
347 B
Vue
25 lines
347 B
Vue
<!-- <template>
|
|
<div id="app">
|
|
<LoginForm />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import LoginForm from './components/QQ.vue';
|
|
</script> -->
|
|
<template>
|
|
<div id="app">
|
|
<QQLogin />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import QQLogin from './components/QQLogin.vue';
|
|
|
|
export default {
|
|
name: 'App',
|
|
components: {
|
|
QQLogin
|
|
}
|
|
};
|
|
</script> |