1234567891011121314151617181920212223 |
- <!-- 我的面试 -->
- <template>
- <view class="interview">
- 我的面试
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- @import './myInterview.scss';
- </style>
|