Grid.vue 462 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <div class="chartDatasty" style="margin:3px;">
  3. grid
  4. </div>
  5. </template>
  6. <script>
  7. import {baseUrl} from '@/common/biConfig'
  8. import $ from 'jquery'
  9. import * as utils from '@/view/portal/Utils'
  10. export default {
  11. components:{
  12. },
  13. props:{
  14. },
  15. data(){
  16. return {
  17. }
  18. },
  19. mounted(){
  20. },
  21. computed: {
  22. },
  23. methods: {
  24. },
  25. watch: {
  26. }
  27. }
  28. </script>
  29. <style lang="less" scoped>
  30. </style>