index.vue 454 B

123456789101112131415161718192021222324252627282930
  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">跳转uView文档:www.uviewui.com</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. .link-demo {
  23. margin-top: 80rpx;
  24. text-align: center;
  25. }
  26. </style>