mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
749274d22a
- Add examples/with-store/ to show how to use Vuex with nuxt.js - Fix fetch().then when fetch does not return a promise - Map static folder to /static/
16 lines
267 B
Vue
Executable File
16 lines
267 B
Vue
Executable File
<template>
|
|
<div class="container">
|
|
<img src="/static/nuxt.png" />
|
|
<h2>About</h2>
|
|
<p><router-link to='/'>Home</router-link></p>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.container {
|
|
font-family: serif;
|
|
margin-top: 200px;
|
|
text-align: center;
|
|
}
|
|
</style>
|