myInterview.vue 262 B

1234567891011121314151617181920212223
  1. <!-- 我的面试 -->
  2. <template>
  3. <view class="interview">
  4. 我的面试
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. }
  12. },
  13. methods: {
  14. }
  15. }
  16. </script>
  17. <style lang="scss" scoped>
  18. @import './myInterview.scss';
  19. </style>