You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
357 B
29 lines
357 B
|
2 months ago
|
<template>
|
||
|
|
<section class="boxWrap">
|
||
|
|
<eMid />
|
||
|
|
<eRight />
|
||
|
|
</section>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import eMid from './eMid.vue';
|
||
|
|
import eRight from './eRight.vue';
|
||
|
|
export default {
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
|
||
|
|
};
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
|
||
|
|
},
|
||
|
|
mounted() {
|
||
|
|
},
|
||
|
|
components: { eMid, eRight }
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss">
|
||
|
|
@import './index.scss'
|
||
|
|
</style>
|