Files
screen-lnsh/src/pages/modules/processproduction/three.vue

33 lines
685 B
Vue
Raw Normal View History

2023-05-30 15:58:12 +08:00
<template>
<section class="con_container">
<one/>
<two/>
</section>
</template>
<script>
2023-06-02 09:38:31 +08:00
// import one from './one.vue'
// import two from './two.vue'
2023-06-08 18:19:37 +08:00
// import one from '../homepage/one.vue'
// import two from '../homepage/two.vue'
2023-06-07 17:39:47 +08:00
// import one from '../takeshape/one.vue'
// import two from '../takeshape/two.vue'
2023-06-08 18:19:37 +08:00
import one from '../hunniankunliao/one.vue'
import two from '../hunniankunliao/two.vue'
// import one from '../firedry/one.vue'
// import two from '../firedry/two.vue'
2023-05-30 15:58:12 +08:00
export default {
components: {
one,
two
}
}
</script>
<style lang="stylus" scoped>
@import '~@css/mixin'
.con_container
_wh(100%, 100%)
_fj(row)
</style>