tiny-vue/examples/sites/demos/pc/app/font/chinese-font-set-compositio...

22 lines
360 B
Vue

<template>
<tiny-layout class="tiny-font">
<span>用户体验</span>
<p>微软雅黑</p>
</tiny-layout>
</template>
<script setup lang="jsx">
import { Layout as TinyLayout } from '@opentiny/vue'
</script>
<style scoped>
.tiny-font span {
font-size: 14px;
line-height: 20px;
}
.tiny-font p {
font-size: 24px;
line-height: 48px;
}
</style>