左右屏合并

This commit is contained in:
2023-05-30 15:58:12 +08:00
parent 575138cb40
commit fffacc8576

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>