vue生态依赖更新

This commit is contained in:
2023-08-01 15:58:34 +08:00
parent fd4dd1bf88
commit 40008c2c68
14 changed files with 1930 additions and 1159 deletions

View File

@@ -9,6 +9,5 @@
<template>
<div class="header-root">我是公共足部组件</div>
</template>
<script setup lang="ts">
</script>
<style lang="scss" scoped></style>
<script setup lang="ts"></script>
<style lang="scss" scoped></style>

View File

@@ -3,24 +3,18 @@
* @Version: 2.0
* @Author: Ruin 🍭
* @Date: 2022-03-10 10:15:28
* @LastEditors: 刘引
* @LastEditTime: 2022-03-10 14:58:15
* @LastEditors: 刘引 liu.yin.work@foxmail.com
* @LastEditTime: 2023-08-01 15:45:21
-->
<template>
<div class="root">我是公共头部组件</div>
</template>
<script setup lang="ts">
import { computed, onBeforeMount } from 'vue';
import { useStore } from 'vuex';
const store = useStore()
import { computed, onBeforeMount } from 'vue'
onBeforeMount(() => {
})
onBeforeMount(() => {})
computed(() => {
console.log(123);
console.log(123)
})
</script>
<style lang="scss" scoped>
</style>
<style lang="scss" scoped></style>