mall-app-t/pages/index/icons.vue

14 lines
348 B
Vue
Raw Permalink Normal View History

2024-05-22 15:42:13 +08:00
<template>
2024-05-31 01:06:20 +08:00
<pb-layout title="图标" navbar="normal" tabbar="/pages/index/icons" opacityBgUi="bg-white" color="black">
<view>
<text v-for="item in icons" :class="[item]"></text>
</view>
</pb-layout>
2024-05-22 15:42:13 +08:00
</template>
<script setup>
import { ref } from 'vue'
console.log(COLORICONS)
const icons = ref(COLORICONS)
</script>