TianluEngin.vue 250 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div class="Chart"></div>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. option: {}
  9. }
  10. },
  11. created() {},
  12. mounted() {
  13. },
  14. methods: {
  15. },
  16. }
  17. </script>
  18. <style>
  19. </style>