calendar.ux 420 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div class="wrapper">
  3. <web id="wannianrili" src="https://wannianrili.bmcx.com/"></web>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. data: {
  9. title: "Hello World. Quickapp Component."
  10. },
  11. props: [],
  12. onInit() {}
  13. }
  14. </script>
  15. <style>
  16. .wrapper {
  17. flex-direction: column;
  18. justify-content: center;
  19. align-items: center;
  20. }
  21. .title {
  22. text-align: center;
  23. color: #212121;
  24. }
  25. </style>