mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 09:33:54 +00:00
14 lines
150 B
Vue
14 lines
150 B
Vue
<template>
|
|
<div>
|
|
<h1>I'm RED</h1>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
/* INDEX CSS */
|
|
h1 {
|
|
color: red;
|
|
}
|
|
/* END OF INDEX CSS */
|
|
</style>
|