Compare commits
8 Commits
150cd1c4d0
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
| a068612944 | |||
| ff901ef6ea | |||
| c729146239 | |||
| 4caa51bf2e | |||
| 1ee817e8c0 | |||
| 85baf1d950 | |||
| 8aca717b0c | |||
| 44b5cc1298 |
@@ -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{
|
||||
|
||||
20
vuex_demo1/src/components/box.vue
Normal file
20
vuex_demo1/src/components/box.vue
Normal 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
1
vuex_demo1/test.txt
Normal file
@@ -0,0 +1 @@
|
||||
测试远程dev分支
|
||||
Reference in New Issue
Block a user