|
@@ -1,7 +1,18 @@
|
|
<template>
|
|
<template>
|
|
- <div>在线简历</div>
|
|
|
|
|
|
+ <div class="default-width d-flex pt-3">
|
|
|
|
+ <LeftPage class="left"></LeftPage>
|
|
|
|
+ <RightPage></RightPage>
|
|
|
|
+ </div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
defineOptions({ name: 'resume-index' })
|
|
defineOptions({ name: 'resume-index' })
|
|
-</script>
|
|
|
|
|
|
+import LeftPage from './dynamic/left.vue'
|
|
|
|
+import RightPage from './dynamic/right.vue'
|
|
|
|
+</script>
|
|
|
|
+
|
|
|
|
+<style lang="scss" scoped>
|
|
|
|
+.left {
|
|
|
|
+ width: 272px;
|
|
|
|
+}
|
|
|
|
+</style>
|