Files
component-party/content/2-templating/2-styling/vue3/CssStyle.vue
2026-02-10 14:18:45 +08:00

11 lines
177 B
Vue

<template>
<h1 class="title">我是红色的</h1>
<button style="font-size: 10rem">我是一个按钮</button>
</template>
<style scoped>
.title {
color: red;
}
</style>