Files
shoot-miniprograms/src/components/BowTargetEdit.vue

18 lines
259 B
Vue
Raw Normal View History

2025-07-30 17:38:48 +08:00
<script setup></script>
<template>
<view class="container">
<image src="../static/bow-target.png" mode="widthFix" />
</view>
</template>
<style scoped>
.container {
width: 90%;
margin: 10px auto;
}
.container > image {
width: 100%;
}
</style>