Compare commits

..

3 Commits

Author SHA1 Message Date
85baf1d950 Merge branch 'master' of https://git.moguyn.cn/Miku/vuex 2022-06-07 16:23:08 +08:00
8aca717b0c import and use box component 2022-06-07 16:22:52 +08:00
44b5cc1298 add box.vue 2022-06-07 16:21:14 +08:00
2 changed files with 26 additions and 2 deletions

View File

@ -4,17 +4,21 @@
<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
"my-sub":sub,
box
},
data(){
return{
@ -26,4 +30,4 @@ export default {
<style scoped>
</style>
</style>

View File

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