生产工序

This commit is contained in:
2023-05-31 09:51:10 +08:00
parent dab2eba2bc
commit c4fd39c350
8 changed files with 14 additions and 10 deletions

View File

@@ -0,0 +1,24 @@
<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>