add capsule and ring chart

This commit is contained in:
jiaming 2018-12-05 18:31:36 +08:00
parent 197b058b55
commit 0ce1209fb3
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<template>
<div class="capsule-chart">
this is capsule chart
</div>
</template>
<script>
export default {
name: 'CapsuleChart'
}
</script>
<style lang="less">
.capsule-chart {}
</style>

View File

@ -0,0 +1,15 @@
<template>
<div class="ring-chart">
this is ring chart
</div>
</template>
<script>
export default {
name: 'RingChart'
}
</script>
<style lang="less">
.ring-chart {}
</style>