demo.vue 596 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <div>
  3. <div></div>
  4. <Footer page="demo"></Footer>
  5. </div>
  6. </template>
  7. <script>
  8. import Footer from "@/components/Footer";
  9. export default {
  10. components: {
  11. Footer
  12. },
  13. i18n: {
  14. "zh-CN": {
  15. type: "加载类型",
  16. color: "自定义颜色",
  17. text: "加载文案"
  18. },
  19. "en-US": {
  20. type: "Type",
  21. color: "Color",
  22. text: "Text"
  23. }
  24. }
  25. };
  26. </script>
  27. <style lang="less" scoped>
  28. div {
  29. height: 100px;
  30. width: 100px;
  31. background: green;
  32. }
  33. .van-loading {
  34. display: inline-block;
  35. margin: 5px 0 5px 20px;
  36. background: gray;
  37. }
  38. </style>