This commit is contained in:
2023-05-30 16:03:59 +08:00
4 changed files with 31 additions and 4 deletions

View File

@@ -100,8 +100,7 @@
<script>
export default {
components: {
},
name: 'one',
data () {
return {
finishRate1: 80,

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>

View File

@@ -104,8 +104,7 @@
<script>
export default {
components: {
},
name: 'two',
data () {
return {
finishRate1: 80,