18 lines
259 B
Vue
18 lines
259 B
Vue
|
|
<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>
|