12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <view class="content">
- <view class="link-demo">
- <u-link :color="$u.color['primary']" :under-line="true" href="http://www.uviewui.com">Link超链接组件演示</u-link>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title: 'Hello'
- }
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- padding: 40rpx;
- }
-
- .link-demo {
- margin-top: 80rpx;
- }
- </style>
|