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

14 lines
376 B
Vue

<template>
<pb-layout title="图标" navbar="normal" tabbar="/pages/index/icons" opacityBgUi="bg-white" color="black">
<view>
<text v-for="item in icons" :class="[item, 'icon-x']"></text>
</view>
</pb-layout>
</template>
<script setup>
import { ref } from 'vue'
console.log(COLORICONS)
const icons = ref(COLORICONS)
</script>