This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user