mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
8ab135af55
Alpha 0.1.0
19 lines
297 B
Vue
Executable File
19 lines
297 B
Vue
Executable File
<template>
|
|
<div class="basic-css">
|
|
<p>Hello World</p>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
.basic-css {
|
|
font: 15px Helvetica, Arial, sans-serif;
|
|
background: #eee;
|
|
padding: 100px;
|
|
text-align: center;
|
|
transition: 100ms ease-in background;
|
|
}
|
|
.basic-css:hover {
|
|
background: #ccc
|
|
}
|
|
</style>
|