This commit is contained in:
2020-03-18 23:24:37 +00:00
parent 0c4de7135e
commit a079e5c7b6
4 changed files with 208 additions and 3 deletions

View File

@@ -1,5 +1,8 @@
<template>
<UnderConstruction />
<div>
<gz-pick-list v-model="selectedWidget" :ayaType="ayaType().Widget">
</gz-pick-list>
</div>
</template>
<script>
@@ -17,7 +20,7 @@ import UnderConstruction from "../components/underconstruction.vue";
*/
export default {
components: {
UnderConstruction
//UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
@@ -26,6 +29,19 @@ export default {
title: window.$gz.translation.get("Dashboard"),
helpUrl: "form-home-dashboard"
});
},
data() {
return {
selectedWidget: null
};
},
methods: {
lt: function(ltkey) {
return window.$gz.translation.get(ltkey);
},
ayaType: function() {
return window.$gz.type;
}
}
};
</script>