This commit is contained in:
Ruin
2022-03-10 12:30:05 +08:00
parent 602e9d2f87
commit db6e49ad10
14 changed files with 1524 additions and 550 deletions

21
src/views/user/index.vue Normal file
View File

@@ -0,0 +1,21 @@
<!--
* @Description: {{ByRuin}}
* @Version: 2.0
* @Author: Ruin 🍭
* @Date: 2022-03-10 10:11:06
* @LastEditors: 刘引
* @LastEditTime: 2022-03-10 10:58:49
-->
<template>
<div class="root-home">
<news></news>
<h1>写一点demo玩一玩</h1>
</div>
</template>
<script setup lang="ts">
import news from "./components/news.vue"
</script>
<style lang="scss" scoped>
</style>