| 1234567891011121314151617181920212223242526 |
- <template>
- <view class="tools">
- <!-- 在这里可以开发自己的DIY工具 -->
- <text style="margin-top: 50rpx;color: grey;font-size: 24rpx;">Empty</text>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- methods: {
-
- },
- };
- </script>
- <style lang="scss" scoped>
- .tools {
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 750rpx;
- }
- </style>
|