This commit is contained in:
Ruin
2022-03-10 17:55:48 +08:00
parent 07be80f1d4
commit c7630a957f
7 changed files with 66 additions and 48 deletions

View File

@@ -4,11 +4,23 @@
* @Author: Ruin 🍭
* @Date: 2022-03-10 10:15:28
* @LastEditors: 刘引
* @LastEditTime: 2022-03-10 10:46:16
* @LastEditTime: 2022-03-10 14:58:15
-->
<template>
<div class="root">我是头部组件</div>
<div class="root">我是公共头部组件</div>
</template>
<script setup lang="ts">
import { computed, onBeforeMount } from 'vue';
import { useStore } from 'vuex';
const store = useStore()
onBeforeMount(() => {
})
computed(() => {
console.log(123);
})
</script>
<style lang="scss" scoped></style>
<style lang="scss" scoped>
</style>