|
123456789101112131415161718192021222324252627282930313233 |
- <template>
- <view class="details">
- <!-- u-cell -->
- <!-- <u-cell icon="setting-fill" title="个人设置"></u-cell>
- <view style="padding: 20px;">
- <view class="box">
- <u-badge :type="type" max="99" :value="value"></u-badge>
- </view>
- <u-tag text="标签"></u-tag>
- <u-tag text="标签" type="warning"></u-tag>
- <u-tag text="标签" type="success"></u-tag>
- <u-tag text="标签" type="error" closable :show="close1" @close="close1 = false"></u-tag>
- </view> -->
- </view>
- </template>
-
- <script>
- export default {
- data() {
- return {
- type: "warning",
- value: 100,
- close1: true,
- }
- }
- }
- </script>
-
- <style lang="scss" scoped>
- .details {
-
- }
- </style>
|