This commit is contained in:
2020-11-02 23:25:16 +00:00
parent 88fac22528
commit 259aa1be7b
4 changed files with 49 additions and 23 deletions

View File

@@ -0,0 +1,36 @@
<template>
<gz-dash
icon="$ayiSplotch"
:updateFrequency="60000"
v-on:dash-refresh="loadData"
v-on="$listeners"
v-bind="$attrs"
>
<template slot="main">
<div class="ml-4 mt-1 d-flex align-center">
<div>
<span class="orange--text"> DAY CALENDAR WIDGET CONTENT HERE</span>
</div>
</div>
</template>
</gz-dash>
</template>
<script>
import GzDash from "../components/dash-base.vue";
export default {
components: {
GzDash
},
data() {
return {};
},
props: {},
created() {},
computed: {},
methods: {
loadData: function() {
console.log("GzDashTestDayCalendarWidget::loadData");
}
}
};
</script>

View File

@@ -9,7 +9,7 @@
<template slot="main">
<div class="ml-4 mt-1 d-flex align-center">
<div>
<span class="green--text"> PRICIEST WIDGETS LIST CONTENT HERE</span>
<span class="green--text">LIST PRICIEST WIDGETS CONTENT HERE</span>
</div>
</div>
</template>