質問編集履歴
2
誤字修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -30,7 +30,9 @@
|
|
30
30
|
|
31
31
|
<script>
|
32
32
|
|
33
|
+
export default {
|
34
|
+
|
33
|
-
computed: {
|
35
|
+
computed: {
|
34
36
|
|
35
37
|
todos:{
|
36
38
|
|
@@ -44,6 +46,8 @@
|
|
44
46
|
|
45
47
|
},
|
46
48
|
|
49
|
+
}
|
50
|
+
|
47
51
|
}
|
48
52
|
|
49
53
|
</script>
|
@@ -52,13 +56,21 @@
|
|
52
56
|
|
53
57
|
```vuex
|
54
58
|
|
55
|
-
|
59
|
+
import { createStore } from 'vuex'
|
56
60
|
|
57
|
-
todo:"",
|
58
61
|
|
59
|
-
todos: [{value:0}],
|
60
62
|
|
63
|
+
export default createStore({
|
64
|
+
|
65
|
+
state: {
|
66
|
+
|
67
|
+
todo:"",
|
68
|
+
|
69
|
+
todos: [{value:0}],
|
70
|
+
|
61
|
-
}
|
71
|
+
}
|
72
|
+
|
73
|
+
})
|
62
74
|
|
63
75
|
```
|
64
76
|
|
1
誤字修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -108,6 +108,22 @@
|
|
108
108
|
|
109
109
|
```
|
110
110
|
|
111
|
+
[Vue warn]: Unhandled error during execution of scheduler flush. This is likely a Vue internals bug. Please open an issue at https://new-issue.vuejs.org/?repo=vuejs/vue-next
|
112
|
+
|
113
|
+
at <SigTerm row= {buffa: "1", term: 0} >
|
114
|
+
|
115
|
+
at <SigCondi>
|
116
|
+
|
117
|
+
at <Home onVnodeUnmounted=fn<onVnodeUnmounted> ref=Ref< undefined > >
|
118
|
+
|
119
|
+
at <RouterView>
|
120
|
+
|
121
|
+
at <App>
|
122
|
+
|
123
|
+
```
|
124
|
+
|
125
|
+
```
|
126
|
+
|
111
127
|
TypeError: Cannot read property 'row' of undefined
|
112
128
|
|
113
129
|
at Proxy.get (sig_termcondi.vue?d6a3:2959)
|