Files
screen-lnsh/src/pages/modules/processproduction/three.vue
2023-05-31 09:51:10 +08:00

25 lines
345 B
Vue

<template>
<section class="con_container">
<one/>
<two/>
</section>
</template>
<script>
import one from './one.vue'
import two from './two.vue'
export default {
components: {
one,
two
}
}
</script>
<style lang="stylus" scoped>
@import '~@css/mixin'
.con_container
_wh(100%, 100%)
_fj(row)
</style>