This commit is contained in:
2020-11-02 20:22:34 +00:00
parent 8aaa58eb1d
commit ff3827e544
3 changed files with 63 additions and 1 deletions

View File

@@ -0,0 +1,38 @@
<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="purple--text">
BAR CHART Widget count by UserType 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("GzDashTestBarWidgetCountByUserType::loadData");
}
}
};
</script>