This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cyber-narrator-cn-ui/src/components/charts/ChartMap.vue
2021-08-11 22:14:23 +08:00

33 lines
570 B
Vue

<template>
<div class="cn-chart cn-chart__map">
<div class="cn-chart__header">
<div class="header__title">
<slot name="title"></slot>
</div>
<div class="header__operations">
<slot name="operations"></slot>
</div>
</div>
<div class="cn-chart__body" v-loading="loading">
<slot></slot>
</div>
<div class="cn-chart__footer">
<slot name="footer"></slot>
</div>
</div>
</template>
<script>
export default {
name: 'ChartMap',
props: {
loading: Boolean
}
}
</script>
<style>
</style>