123456789101112131415161718192021222324252627282930 |
- <template>
- <view class="content">
- <view class="link-demo">
- <u-link :color="$u.color['primary']" :under-line="true" href="http://www.uviewui.com">跳转uView文档:www.uviewui.com</u-link>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title: 'Hello'
- }
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .link-demo {
- margin-top: 80rpx;
- text-align: center;
- }
- </style>
|