Compare commits

...

11 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
150cd1c4d0 add copyright comment and update name 2022-06-07 15:19:10 +08:00
755c790ff2 merge with no-ff 2022-06-07 08:15:28 +08:00
3d9a93da73 update vue.docx 2022-06-07 08:12:42 +08:00
10 changed files with 35 additions and 5 deletions

BIN
vue.docx

Binary file not shown.

View File

@@ -1,5 +1,5 @@
{
"name": "vuex_demo1",
"name": "vuex_demo1_1",
"version": "0.1.0",
"private": true,
"scripts": {

View File

@@ -11,7 +11,7 @@
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<div id="app1"></div>
<!-- built files will be auto injected -->
</body>
</html>

View File

@@ -1,19 +1,24 @@
<!--moguyun-->
<template>
<div>
<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{

View File

@@ -1,3 +1,4 @@
<!--moguyun-->
<template>
<div>
<h3>当前最新的count值为{{$store.state.count}}</h3>

View File

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

View File

@@ -1,3 +1,4 @@
<!--moguyun-->
<template>
<div>
<h3>当前最新的count值为{{count}}</h3>

View File

@@ -1,3 +1,4 @@
//moguyun
import Vue from 'vue'
import App from './App.vue'
import store from './store'
@@ -7,4 +8,4 @@ Vue.config.productionTip = false
new Vue({
store,
render: h => h(App)
}).$mount('#app')
}).$mount('#app1')

View File

@@ -1,3 +1,4 @@
//moguyun
import Vue from 'vue'
import Vuex from 'vuex'

1
vuex_demo1/test.txt Normal file
View File

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