Support remote script

This commit is contained in:
Peng-YM
2020-08-21 18:06:27 +08:00
parent a610346c5d
commit 343692db86
14 changed files with 158 additions and 29 deletions

View File

@@ -28,9 +28,9 @@
<v-app-bar
app
fixed
dark
color="primary"
dark
fixed
>
<v-app-bar-nav-icon @click.stop="toggleMenu"></v-app-bar-nav-icon>
@@ -50,10 +50,10 @@ export default {
},
methods: {
toggleMenu: function() {
toggleMenu: function () {
this.showMenu = !this.showMenu;
},
doNothing: function() {
doNothing: function () {
}
}