step-layout.vue 660 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="step-container">
  3. <!-- Title Area -->
  4. <view class="header-area">
  5. <view class="title">{{ title }}</view>
  6. <view class="sub-title">{{ subtitle }}</view>
  7. </view>
  8. <!-- Form Area -->
  9. <view class="content-area">
  10. <slot></slot>
  11. </view>
  12. <!-- Bottom Buttons -->
  13. <view class="footer-area">
  14. <button class="btn-next" @click="onNext">{{ nextText }}</button>
  15. <view class="btn-skip" v-if="showSkip" @click="onSkip">{{ skipText }}</view>
  16. </view>
  17. </view>
  18. </template>
  19. <script src="./step-layout.js"></script>
  20. <style lang="scss" scoped>
  21. @import './step-layout.scss';
  22. </style>