mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
20 lines
211 B
Vue
20 lines
211 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>
|