commit
This commit is contained in:
@@ -4,10 +4,10 @@
|
||||
* @Author: Ruin 🍭
|
||||
* @Date: 2022-03-10 10:15:34
|
||||
* @LastEditors: 刘引
|
||||
* @LastEditTime: 2022-03-10 10:51:31
|
||||
* @LastEditTime: 2022-03-10 13:25:51
|
||||
-->
|
||||
<template>
|
||||
<div class="header-root">我是足部组件</div>
|
||||
<div class="header-root">我是公共足部组件</div>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
</script>
|
||||
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user