35 lines
767 B
Vue
35 lines
767 B
Vue
<template>
|
|
<section class="con_container">
|
|
<one/>
|
|
<two/>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
// import one from './one.vue'
|
|
// import two from './two.vue'
|
|
// import one from '../homepage/one.vue'
|
|
// import two from '../homepage/two.vue'
|
|
// import one from '../takeshape/one.vue'
|
|
// import two from '../takeshape/two.vue'
|
|
import one from '../sortpack/one.vue'
|
|
import two from '../sortpack/two.vue'
|
|
// import one from '../hunniankunliao/one.vue'
|
|
// import two from '../hunniankunliao/two.vue'
|
|
// import one from '../firedry/one.vue'
|
|
// import two from '../firedry/two.vue'
|
|
export default {
|
|
components: {
|
|
one,
|
|
two
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
@import '~@css/mixin'
|
|
.con_container
|
|
_wh(100%, 100%)
|
|
_fj(row)
|
|
</style>
|