28 lines
368 B
Vue
28 lines
368 B
Vue
<template>
|
|
<div>
|
|
<my-add></my-add>
|
|
<p>-----------------------------------------</p>
|
|
<my-sub></my-sub>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import add from './components/add.vue'
|
|
import sub from "./components/sub.vue"
|
|
|
|
export default {
|
|
components:{
|
|
"my-add":add,
|
|
"my-sub":sub
|
|
},
|
|
data(){
|
|
return{
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |