sujectTwo.vue 315 B

1234567891011121314151617181920
  1. <template>
  2. <div class="container">
  3. <van-button class="my-button" type="primary">前往观看视频</van-button>
  4. </div>
  5. </template>
  6. <script setup>
  7. </script>
  8. <style lang="scss" scoped>
  9. .container {
  10. width: 100%;
  11. display: flex;
  12. justify-content: center;
  13. margin-top: 25px;
  14. }
  15. .my-button {
  16. width: 75%;
  17. }
  18. </style>