页面代码
<template>
<view class="container">
<List />
</view>
</template>
<script setup>
import List from "./list.vue"
</script>
子组件List.view
<template>
<view class="content">
<view id="test">
321321
</view>
</view>
</template>