inleft
2022-02-21 63f5119bcc714c36fe8db21e5461d73eb5a0eaa0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
    <div>
        <show-num-com></show-num-com>
        <addition-num-com></addition-num-com>
    </div>
</template>
 
<script>
    import showNumCom from './showNum.vue'
    import additionNumCom from './additionNum.vue'
    export default {
        components: {
            showNumCom,
            additionNumCom
        }
    }
</script>