feat: 详情组件, 实例文件

This commit is contained in:
wenhua
2024-05-19 14:04:28 +08:00
parent 5b68ee6846
commit cb7f6e9919
7 changed files with 229 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<template>
<div>
步骤1
</div>
</template>
<script setup>
import { onMounted } from 'vue';
onMounted(()=>{
console.log('步骤1-5挂载');
})
</script>
<style lang="scss" scoped>
</style>