| 123456789101112131415161718192021222324252627 |
- <template>
- <view>
- <div class="no-data">--还没有收藏哟--</div>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .no-data{
- color: #00aaff;
- text-align: center;
- margin-top: 40px;
- }
- </style>
|