Compare commits

..

No commits in common. "85baf1d950724d3b2a81ccfe2d1d6c7228713818" and "150cd1c4d0f29e57ea15d6f8f1fa072069277c30" have entirely different histories.

2 changed files with 2 additions and 26 deletions

View File

@ -4,21 +4,17 @@
<my-add></my-add>
<p>-----------------------------------------</p>
<my-sub></my-sub>
<p>-----------------------------------------</p>
<box></box>
</div>
</template>
<script>
import add from './components/add.vue'
import sub from "./components/sub.vue"
import box from './components/box.vue'
export default {
components:{
"my-add":add,
"my-sub":sub,
box
"my-sub":sub
},
data(){
return{
@ -30,4 +26,4 @@ export default {
<style scoped>
</style>
</style>

View File

@ -1,20 +0,0 @@
<template>
<div>
这是box组件
</div>
</template>
<script>
export default {
data(){
return{ }
},
methods:{
},
computed:{
}
}
</script>