1234567891011121314151617181920 |
- <template>
- <div class="container">
- <van-button class="my-button" type="primary">前往观看视频</van-button>
- </div>
- </template>
- <script setup>
- </script>
- <style lang="scss" scoped>
- .container {
- width: 100%;
- display: flex;
- justify-content: center;
- margin-top: 25px;
- }
- .my-button {
- width: 75%;
- }
- </style>
|