mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
* chore(eslint-config): update dependencies, test cases * chore: update file .lock * fix: wrong .lock file * fix: code style * chore: update `eslint-plugin-vue`
21 lines
233 B
Vue
21 lines
233 B
Vue
<template>
|
|
<div>
|
|
<span v-for="a in arr">{{ a }}</span>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
const a = 1;
|
|
a = 1;
|
|
export default {
|
|
name: 'Todo',
|
|
data() {
|
|
return {
|
|
arr: [1, 2, 3],
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style></style>
|