12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <view class="intro-box">
- <view>
- <image src="@/static/img/index/bg1.png" mode="widthFix"></image>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: "intro",
- components: {},
- props: {},
- data() {
- return {}
- },
- watch: {},
- mounted() {
- },
- methods: {}
- }
- </script>
- <style scoped lang="scss">
- .intro-box{
- width: 100%;
- image{
- width: 100vw;
- }
- }
- </style>
|