index.vue 550 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <view class="content">
  3. <view class="link-demo">
  4. <u-link :color="$u.color['primary']" :under-line="true" href="http://www.uviewui.com">Link超链接组件演示</u-link>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. title: 'Hello'
  13. }
  14. },
  15. onLoad() {
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style lang="scss" scoped>
  22. .content {
  23. display: flex;
  24. flex-direction: column;
  25. align-items: center;
  26. justify-content: center;
  27. padding: 40rpx;
  28. }
  29. .link-demo {
  30. margin-top: 80rpx;
  31. }
  32. </style>