This commit is contained in:
2020-11-02 20:07:03 +00:00
parent 3d303d1972
commit 2f6f60bf61
2 changed files with 15 additions and 13 deletions

View File

@@ -94,7 +94,7 @@
<slot name="main" <slot name="main"
><div class="ml-4 mt-1 d-flex align-center"> ><div class="ml-4 mt-1 d-flex align-center">
<div> <div>
<span class="orange--text" <span class="grey--text"
>CONTENT CONTENT CONTENT CONTENT CONTENT CONTENT<br />CONTENT >CONTENT CONTENT CONTENT CONTENT CONTENT CONTENT<br />CONTENT
CONTENT CONTENT CONTENT CONTENT CONTENT<br />CONTENT CONTENT CONTENT CONTENT CONTENT CONTENT CONTENT CONTENT<br />CONTENT CONTENT CONTENT
CONTENT CONTENT CONTENT<br />CONTENT CONTENT CONTENT CONTENT CONTENT CONTENT CONTENT CONTENT<br />CONTENT CONTENT CONTENT CONTENT CONTENT

View File

@@ -1,14 +1,18 @@
<template> <template>
<gz-dash <gz-dash
:showCount="true"
:count="0"
moreUrl="/home-dashboard"
icon="$ayiSplotch" icon="$ayiSplotch"
:updateFrequency="60000" :updateFrequency="60000"
v-on:dash-refresh="loadData"
v-on="$listeners" v-on="$listeners"
v-bind="$attrs" v-bind="$attrs"
> >
MY CONTENT HERE <template slot="main">
<div class="ml-4 mt-1 d-flex align-center">
<div>
<span class="green--text"> PRICIEST WIDGETS LIST CONTENT HERE</span>
</div>
</div>
</template>
</gz-dash> </gz-dash>
</template> </template>
<script> <script>
@@ -20,15 +24,13 @@ export default {
data() { data() {
return {}; return {};
}, },
props: { props: {},
// id: {
// type: String,
// required: true
// }
},
created() {}, created() {},
computed: {}, computed: {},
methods: {} methods: {
loadData: function() {
console.log("dash-test-widgets-priciest::loadData");
}
}
}; };
</script> </script>