17 lines
202 B
Vue
17 lines
202 B
Vue
<template>
|
|
<div>
|
|
步骤1
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { onMounted } from 'vue';
|
|
|
|
onMounted(()=>{
|
|
console.log('步骤一挂载');
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style> |