This commit is contained in:
2019-04-17 23:54:40 +00:00
parent 57983a7a51
commit e5781ce914

View File

@@ -24,14 +24,13 @@
<v-btn <v-btn
class="hidden-xs-only" class="hidden-xs-only"
right right
flat
icon icon
v-if="item.surface" v-if="item.surface"
:key="item.key" :key="item.key"
:disabled="item.disabled" :disabled="item.disabled"
@click="$gzevent.$emit('menu-click',item)" @click="$gzevent.$emit('menu-click',item)"
> >
<v-icon :color="item.color?item.color:''">{{ "fa-" + item.icon }}</v-icon> <v-icon :color="item.color ? item.color : ''">{{ "fa-" + item.icon }}</v-icon>
</v-btn> </v-btn>
</template> </template>
<v-spacer></v-spacer> <v-spacer></v-spacer>
@@ -93,7 +92,7 @@ import aboutInfo from "./api/aboutinfo";
import gzmenu from "./api/gzmenu"; import gzmenu from "./api/gzmenu";
export default { export default {
name: "App", //name: "App",
data() { data() {
return { return {
drawer: null, drawer: null,
@@ -103,7 +102,8 @@ export default {
title: "", title: "",
helpUrl: "index.html", helpUrl: "index.html",
menuItems: [] menuItems: []
} },
testcolor: "pink"
}; };
}, },
created() { created() {