genkio / blog

Stay hungry stay foolish
https://slashbit.github.io/blog/
0 stars 1 forks source link

Vue.js bits and pieces #144

Open genkio opened 7 years ago

genkio commented 7 years ago

bits and pieces, tips and tricks for Vue.js development

wrap repeat contents inside of template instead of dummy div

<div v-for="item in list">
    <p>{{item.content}}</p>
</div>
<template v-for="item in list">
    <p>{{item.content}}</p>
</template>