canvas/pages/index/index.vue
2025-07-24 09:55:05 +08:00

26 lines
330 B
Vue

<template>
<view>
<canvasChild :imgUrl="'https://assets.tech.troyrc.com/sx25/images/events/XBDT.jpg'"></canvasChild>
</view>
</template>
<script>
import canvasChild from './canvas'
export default {
components:{
canvasChild
},
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>