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

25 lines
345 B
Vue
Raw Normal View History

2023-05-30 15:58:12 +08:00
<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>