Nuxt/examples/basic-css/pages/index.vue
Sébastien Chopin 8ab135af55 Prototype 0.1.0 working
Alpha 0.1.0
2016-11-07 02:34:58 +01:00

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>