fix header action

This commit is contained in:
thanatos
2021-10-12 09:41:21 +08:00
parent 0c6c024bb1
commit cb1613604f
19 changed files with 1108 additions and 715 deletions
+17
View File
@@ -0,0 +1,17 @@
new Vue({
el: '#app',
data: function () {
return {
attr: '',
struct: {
...struct,
attribute: JSON.parse(struct.attribute)
}
}
},
methods: {
changeAttr(val) {
this.attr = JSON.stringify(val)
},
}
})