1. 程式人生 > >vue 學習心得

vue 學習心得

每個元件模組(component template)只允許有一個根元素(便於迴圈的時候只在一個元素上加v-if)

<template>

<head></head>

<container><container>

<footer></footer>

</template>

需要寫成

<template>

<div>

<head></head>

<container><container>

<footer></footer>

</div>

</template>