Chart.vue 310 B

123456789101112131415161718192021
  1. <template>
  2. <Ring></Ring>
  3. </template>
  4. <script>
  5. import Ring from '@/components/Ring.vue'
  6. export default {
  7. data() {
  8. return {
  9. editableTabsValue: '1'
  10. }
  11. },
  12. components: {
  13. Ring
  14. }
  15. }
  16. </script>
  17. <style scoped>
  18. </style>