17 lines
204 B
Vue
17 lines
204 B
Vue
<script setup>
|
|
const props = defineProps({
|
|
index: {
|
|
type: [String, Number],
|
|
default: null
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>{{index}}</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|