Compare commits

...

8 Commits

Author SHA1 Message Date
a068612944 回滚版本 2022-06-08 11:08:47 +08:00
ff901ef6ea test branch modify 2022-06-08 10:07:34 +08:00
c729146239 touch test.txt for test 2022-06-08 08:41:25 +08:00
4caa51bf2e update div info 2022-06-07 16:49:06 +08:00
1ee817e8c0 update div content 2022-06-07 16:43:15 +08:00
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
3 changed files with 27 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组件测试,test
</div>
</template>
<script>
export default {
data(){
return{ }
},
methods:{
},
computed:{
}
}
</script>

1
vuex_demo1/test.txt Normal file
View File

@@ -0,0 +1 @@
测试远程dev分支