mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2025-03-13 12:11:06 +02:00
34 lines
587 B
Vue
34 lines
587 B
Vue
<template>
|
|
<div class="card">
|
|
<header>%i18n:@title%</header>
|
|
<div class="card">
|
|
<header>%i18n:@local%</header>
|
|
<x-chart v-if="chart" :chart="chart" type="local"/>
|
|
</div>
|
|
<div class="card">
|
|
<header>%i18n:@remote%</header>
|
|
<x-chart v-if="chart" :chart="chart" type="remote"/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from "vue";
|
|
import XChart from "./admin.notes-chart.chart.vue";
|
|
|
|
export default Vue.extend({
|
|
components: {
|
|
XChart
|
|
},
|
|
props: {
|
|
chart: {
|
|
required: true
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
@import '~const.styl'
|
|
|
|
</style>
|