17 lines
606 B
Vue
17 lines
606 B
Vue
<template>
|
|
<view class="mx-4 px-2 py-3 bg-white rounded-2 shadow-sm text-2.5">
|
|
<view class="flex flex-items-center flex-justify-around">
|
|
<view class="text-center">
|
|
<image class="w-6 h-6" src="/static/images/icon_main_edit.webp" mode="aspectFill"></image>
|
|
<view class="mt-1">编辑首页</view>
|
|
</view>
|
|
<view class="text-center">
|
|
<image class="w-6 h-6" src="/static/images/icon_main_switch.webp" mode="aspectFill"></image>
|
|
<view class="mt-1">切换到简洁版</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts"></script>
|