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"
><div class="ml-4 mt-1 d-flex align-center">
<div>
<span class="orange--text"
<span class="grey--text"
>CONTENT CONTENT CONTENT CONTENT CONTENT CONTENT<br />CONTENT
CONTENT CONTENT CONTENT CONTENT CONTENT<br />CONTENT CONTENT CONTENT
CONTENT CONTENT CONTENT<br />CONTENT CONTENT CONTENT CONTENT CONTENT

View File

@@ -1,14 +1,18 @@
<template>
<gz-dash
:showCount="true"
:count="0"
moreUrl="/home-dashboard"
icon="$ayiSplotch"
:updateFrequency="60000"
v-on:dash-refresh="loadData"
v-on="$listeners"
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>
</template>
<script>
@@ -20,15 +24,13 @@ export default {
data() {
return {};
},
props: {
// id: {
// type: String,
// required: true
// }
},
props: {},
created() {},
computed: {},
methods: {}
methods: {
loadData: function() {
console.log("dash-test-widgets-priciest::loadData");
}
}
};
</script>