2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-05-17 07:59:38 +03:00
Files
vue-meta/examples
Pim 6907f9ac98 fix: meta content templates (#429)
* examples: add content templates to ssr example

* fix: improve meta content templates

* chore: cleanup debug helper

* refactor: split long if into variables
2019-08-03 10:44:34 +02:00
..
2019-08-03 10:44:34 +02:00
2019-07-24 10:18:40 +02:00
2019-06-10 12:42:12 +02:00
2019-07-25 18:34:32 +02:00
2019-03-11 10:43:05 +01:00
2019-08-03 10:44:34 +02:00

Vue Meta Examples

Prepare examples

To prepare the examples to run locally, please follow these steps:

git clone https://github.com/nuxt/vue-meta
cd examples
yarn install

Run the examples

When the examples are installed locally, start the example server as follows

yarn start
// or
HOST=0.0.0.0 PORT=8080 yarn start

and browse to http://localhost:3000 or whatever you changed the host and port to

SSR Example

The server side rendering example is available on the cli only, to run the SSR example just run

yarn ssr

Developing

If you would like to use the examples while developing or debugging vue-meta features or issues, please do as follows

git clone https://github.com/nuxt/vue-meta
yarn install
cd examples
yarn install
yarn dev