umdExample.html 838 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>DataV</title>
  5. <script src="https://unpkg.com/vue"></script>
  6. <!--调试版-->
  7. <script src="https://unpkg.com/@jiaminghi/data-view/dist/datav.map.vue.js"></script>
  8. <!--压缩版 生产版本-->
  9. <!-- <script src="https://unpkg.com/@jiaminghi/data-view/dist/datav.min.vue.js"></script> -->
  10. <style>
  11. html, body, #app {
  12. width: 100%;
  13. height: 100%;
  14. margin: 0px;
  15. padding: 0px;
  16. }
  17. .border-box-content {
  18. color: rgb(66,185,131);
  19. font-size: 40px;
  20. font-weight: bold;
  21. display: flex;
  22. justify-content: center;
  23. align-items: center;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div id="app">
  29. <dv-border-box-1>Welcome to DataV</dv-border-box-1>
  30. </div>
  31. <script>
  32. var app = new Vue({
  33. el: '#app'
  34. })
  35. </script>
  36. </body>
  37. </html>