14 lines
348 B
Vue
14 lines
348 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]"></text>
|
|
</view>
|
|
</pb-layout>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
console.log(COLORICONS)
|
|
const icons = ref(COLORICONS)
|
|
</script>
|