mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
b11e9c0e51
- [ ] babel-eslint https://github.com/babel/babel-eslint/issues/664 - [x] eslint-config-standard-jsx https://github.com/standard/eslint-config-standard-jsx/issues/32 - [x] eslint-config-standard to be stable release https://github.com/standard/eslint-config-standard/issues/123 - [x] eslint-plugin-html - [x] eslint-plugin-import - [x] eslint-plugin-jest - [x] eslint-plugin-node - [x] eslint-plugin-promise - [x] eslint-plugin-standard https://github.com/standard/eslint-plugin-standard/issues/29 - [x] eslint-plugin-vue https://github.com/vuejs/eslint-plugin-vue/pull/504 - [x] eslint-plugin-react https://github.com/yannickcr/eslint-plugin-react/releases/tag/v7.10.0
37 lines
622 B
Vue
37 lines
622 B
Vue
<template>
|
|
<div class="container">
|
|
<img src="~static/nuxt-black.png">
|
|
<h2>Thank you for testing nuxt.js</h2>
|
|
<p>Loaded from the {{ name }}</p>
|
|
<p><nuxt-link to="/">Back home</nuxt-link></p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
asyncData({ req }) {
|
|
return {
|
|
name: req ? 'server' : 'client'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.container {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
background: black;
|
|
color: white;
|
|
font-family: "Lucida Console", Monaco, monospace;
|
|
padding-top: 130px;
|
|
text-align: center;
|
|
}
|
|
a {
|
|
color: silver;
|
|
}
|
|
</style>
|