This commit is contained in:
2020-11-02 19:37:46 +00:00
parent f9a429ce5d
commit cf2607d356
4 changed files with 75 additions and 20 deletions

View File

@@ -0,0 +1,27 @@
<template>
<gz-dash
:showCount="true"
:count="0"
moreUrl="/home-dashboard"
icon="$ayiSplotch"
:updateFrequency="60000"
>
MY CONTENT HERE
</gz-dash>
</template>
<script>
import GzDash from "../components/dash-base.vue";
export default {
components: {
GzDash
},
data() {
return {};
},
props: {},
created() {},
computed: {},
methods: {}
};
</script>