uniapp的vue3不能在template写多个子标签吗
时间: 2024-04-08 07:33:02 浏览: 35
在UniApp中使用Vue 3时,可以在template中写多个子标签。和Vue 2相比,Vue 3对模板语法进行了改进,引入了Composition API,但是对于template的写法并没有太大改变。你可以像在Vue 2中一样,在template中使用多个子标签。例如:
```html
<template>
<div>
<p>子标签1</p>
<p>子标签2</p>
</div>
</template>
```
以上代码在UniApp的Vue 3中是合法的,可以正常运行。希望能帮到你!如果还有其他问题,请继续提问。
阅读全文