debian-mirror-gitlab/spec/frontend/vue3migration/components/key_inside_template.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
134 B
Vue
Raw Normal View History

2023-07-09 08:55:56 +05:30
<template>
<div>
<template v-for="count in 5"
><span :key="count">{{ count }}</span></template
>
</div>
</template>