This commit is contained in:
Ruin
2022-03-04 13:04:12 +08:00
parent e2edaec30a
commit ca67e7e105
2 changed files with 5 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
* @Author: Ruin 🍭 * @Author: Ruin 🍭
* @Date: 2022-01-25 16:22:24 * @Date: 2022-01-25 16:22:24
* @LastEditors: 刘引 * @LastEditors: 刘引
* @LastEditTime: 2022-01-25 17:31:49 * @LastEditTime: 2022-02-07 12:43:43
--> -->
<script setup lang="ts"> <script setup lang="ts">
@@ -13,6 +13,7 @@
<template> <template>
<router-view></router-view> <router-view></router-view>
<div>修改后的效果</div>
</template> </template>
<style> <style>

View File

@@ -4,13 +4,15 @@
* @Author: Ruin 🍭 * @Author: Ruin 🍭
* @Date: 2022-01-25 17:26:47 * @Date: 2022-01-25 17:26:47
* @LastEditors: 刘引 * @LastEditors: 刘引
* @LastEditTime: 2022-01-25 18:10:50 * @LastEditTime: 2022-02-07 12:44:33
--> -->
<script setup lang="ts"> <script setup lang="ts">
import HelloWorld from '@/components/HelloWorld.vue' import HelloWorld from '@/components/HelloWorld.vue'
import { ref } from 'vue'; import { ref } from 'vue';
const msg = ref('这是主页') const msg = ref('这是主页')
console.log('尝试打印一下as这个效果非常的号');
</script> </script>