Files
screen-lnsh/src/pages/modules/processproduction/three.vue
2023-06-16 13:59:03 +08:00

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>