Files
Yi.Framework/Yi.Ai.Vue3/src/pages/test/fontawesome.vue
2026-02-01 00:52:10 +08:00

30 lines
630 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<script setup lang="ts">
import FontAwesomeDemo from '@/components/FontAwesomeIcon/demo.vue';
</script>
<template>
<div class="fontawesome-test-page">
<h1>FontAwesome 图标测试页面</h1>
<p>如果看到以下图标正常显示说明 FontAwesome 配置成功</p>
<FontAwesomeDemo />
</div>
</template>
<style scoped lang="scss">
.fontawesome-test-page {
padding: 40px;
min-height: 100vh;
background-color: var(--el-bg-color-page);
h1 {
color: var(--el-text-color-primary);
margin-bottom: 10px;
}
p {
color: var(--el-text-color-regular);
margin-bottom: 30px;
}
}
</style>