mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
20 lines
217 B
Vue
20 lines
217 B
Vue
<template>
|
|
<div>
|
|
<span v-for="a in arr">{{ a }}</span>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
const a = 1;
|
|
a = 1;
|
|
export default {
|
|
data() {
|
|
return {
|
|
arr: [1, 2, 3],
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style></style>
|