mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
wip-Iconify Component#1
This commit is contained in:
parent
07b8fbbe6a
commit
e239418afa
@ -1,18 +1,55 @@
|
||||
<script lang="ts" setup name="Iconify">
|
||||
// import '@purge-icons/generated';
|
||||
// const props = defineProps({
|
||||
// icon: {
|
||||
// type: String,
|
||||
// },
|
||||
// });
|
||||
import Iconify from '@purge-icons/generated';
|
||||
import { nextTick, ref, unref, watchEffect } from 'vue';
|
||||
const props = defineProps({
|
||||
icon: {
|
||||
name: {
|
||||
type: String,
|
||||
default: () => '',
|
||||
},
|
||||
prefix: {
|
||||
type: String,
|
||||
default: () => 'ant-design',
|
||||
},
|
||||
});
|
||||
const elRef = ref<Element>();
|
||||
const update = async () => {
|
||||
const el = unref(elRef);
|
||||
if (!el) return;
|
||||
await nextTick();
|
||||
const icon = props.prefix + ':' + props.name;
|
||||
if (!icon) return;
|
||||
const svg = Iconify.renderSVG(icon, {
|
||||
width: '1.2em',
|
||||
height: '1.2em',
|
||||
});
|
||||
if (svg) {
|
||||
el.textContent = '';
|
||||
el.appendChild(svg);
|
||||
} else {
|
||||
const span = document.createElement('span');
|
||||
span.className = 'iconify';
|
||||
span.dataset.icon = icon;
|
||||
el.textContent = '';
|
||||
el.appendChild(span);
|
||||
}
|
||||
};
|
||||
watchEffect(() => update());
|
||||
</script>
|
||||
<template>
|
||||
<view
|
||||
class="iconify m-iconify"
|
||||
style="height: 44rpx; width: 44rpx"
|
||||
:data-icon="icon"
|
||||
></view>
|
||||
<view ref="elRef" class="iconify m-iconify" class="anticon"></view>
|
||||
</template>
|
||||
<style lang="scss" scoped>
|
||||
.iconify {
|
||||
display: inline-block;
|
||||
height: 44rpx;
|
||||
width: 44rpx;
|
||||
}
|
||||
.m-iconify {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
@ -3,7 +3,7 @@
|
||||
* */
|
||||
|
||||
import presetWeapp from 'unocss-preset-weapp';
|
||||
import { defineConfig } from 'unocss';
|
||||
import { defineConfig, presetIcons } from 'unocss';
|
||||
import {
|
||||
defaultAttributes,
|
||||
defaultIgnoreNonValuedAttributes,
|
||||
@ -33,6 +33,10 @@ export default defineConfig({
|
||||
nonValuedAttribute: true,
|
||||
prefix: 'uno-',
|
||||
}),
|
||||
presetIcons({
|
||||
scale: 1.2,
|
||||
warn: true,
|
||||
}),
|
||||
],
|
||||
shortcuts: [
|
||||
{
|
||||
|
@ -40,7 +40,17 @@ export default ({ mode }: ConfigEnv): UserConfig => {
|
||||
plugins: [
|
||||
uni(),
|
||||
Unocss(),
|
||||
PurgeIcons(),
|
||||
PurgeIcons({
|
||||
content: [
|
||||
'**/*.html',
|
||||
'**/*.js',
|
||||
'**/*.ts',
|
||||
'**/*.vue',
|
||||
'**/*.jsx',
|
||||
'**/*.tsx',
|
||||
'**/*.json',
|
||||
],
|
||||
}),
|
||||
// eslintPlugin({
|
||||
// include: ['src/**/*.js', 'src/**/*.vue', 'src/**/*.ts'],
|
||||
// exclude: ['./node_modules/**'],
|
||||
|
Loading…
x
Reference in New Issue
Block a user