mirror of
https://github.com/nuxt/nuxt.git
synced 2025-01-29 23:02:42 +00:00
Update examples
This commit is contained in:
parent
bc47bdb24b
commit
e7f0200a58
@ -1,10 +1,11 @@
|
||||
{
|
||||
"name": "custom-loading",
|
||||
"description": "",
|
||||
"name": "nuxt-custom-loading",
|
||||
"dependencies": {
|
||||
"nuxt": "latest"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "nuxt"
|
||||
"dev": "nuxt",
|
||||
"build": "nuxt build",
|
||||
"start": "nuxt start"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,5 @@
|
||||
{
|
||||
"name": "nuxt-global-css",
|
||||
"description": "",
|
||||
"dependencies": {
|
||||
"bulma": "^0.2.3",
|
||||
"hover.css": "^2.0.2",
|
||||
|
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div class="container">
|
||||
<h1>About page</h1>
|
||||
<p>Click below to see the custom meta tags added with our custom component <code>twitter-head-card</code></p>
|
||||
<p>Check the source code to see the custom meta tags added with our custom component <code>twitter-head-card</code></p>
|
||||
<twitter-head-card></twitter-head-card>
|
||||
<p><nuxt-link to="/">Home page</nuxt-link></p>
|
||||
</div>
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "i18n",
|
||||
"name": "nuxt-i18n",
|
||||
"dependencies": {
|
||||
"axios": "^0.15.3",
|
||||
"nuxt": "latest"
|
||||
|
@ -1,6 +1,5 @@
|
||||
{
|
||||
"name": "nuxt-custom-routes",
|
||||
"description": "",
|
||||
"name": "nuxt-nested-routes",
|
||||
"dependencies": {
|
||||
"nuxt": "latest"
|
||||
},
|
||||
|
@ -1,6 +1,5 @@
|
||||
{
|
||||
"name": "nuxt-plugins-vendor",
|
||||
"description": "",
|
||||
"dependencies": {
|
||||
"axios": "^0.15.2",
|
||||
"mini-toastr": "^0.3.10",
|
||||
|
@ -10,7 +10,7 @@ import axios from 'axios'
|
||||
|
||||
export default {
|
||||
data () {
|
||||
return axios.get('http://jsonplaceholder.typicode.com/photos/4').then(res => res.data)
|
||||
return axios.get('https://jsonplaceholder.typicode.com/photos/4').then(res => res.data)
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
@ -1,6 +1,5 @@
|
||||
{
|
||||
"name": "routes-transition",
|
||||
"description": "",
|
||||
"name": "nuxt-routes-transitions",
|
||||
"dependencies": {
|
||||
"axios": "^0.15.3",
|
||||
"nuxt": "latest"
|
||||
|
Loading…
Reference in New Issue
Block a user