changes
This commit is contained in:
@@ -102,26 +102,26 @@ export default {
|
||||
},
|
||||
computed: {
|
||||
pagedata1: {
|
||||
get: function () {
|
||||
get() {
|
||||
return this.$store[this.pagename1];
|
||||
},
|
||||
set: function (val) {
|
||||
set(val) {
|
||||
this.$store.commit(this.pagename1, val);
|
||||
},
|
||||
},
|
||||
pagedata2: {
|
||||
get: function () {
|
||||
get() {
|
||||
return this.$store[this.pagename2];
|
||||
},
|
||||
set: function (val) {
|
||||
set(val) {
|
||||
this.$store.commit(this.pagename2, val);
|
||||
},
|
||||
},
|
||||
pagedata3: {
|
||||
get: function () {
|
||||
get() {
|
||||
return this.$store[this.pagename3];
|
||||
},
|
||||
set: function (val) {
|
||||
set(val) {
|
||||
this.$store.commit(this.pagename3, val);
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user