From 9f7e649c8fb995ecb20c57656b5bea5c63ecbe6a Mon Sep 17 00:00:00 2001 From: Marshall Thompson Date: Mon, 1 May 2017 07:07:32 -0600 Subject: [PATCH] Rerun Coverage CI --- README.md | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6e40300..09a39e2 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,7 @@ + # Description `vue-meta` is a [Vue 2.0](https://vuejs.org) plugin that allows you to manage your app's meta information, much like [`react-helmet`](https://github.com/nfl/react-helmet) does for React. However, instead of setting your data as props passed to a proprietary component, you simply export it as part of your component's data using the `metaInfo` property. @@ -192,7 +193,7 @@ app.get('*', (req, res) => { const context = { url: req.url } renderer.renderToString(context, (error, html) => { if (error) return res.send(error.stack) - const { + const { title, htmlAttrs, bodyAttrs, link, style, script, noscript, meta } = context.meta.inject() return res.send(` @@ -385,7 +386,7 @@ Each **key:value** maps to the equivalent **attribute:value** of the `` el { metaInfo: { bodyAttrs: { - bar: 'baz' + bar: 'baz' } } } @@ -397,7 +398,7 @@ Each **key:value** maps to the equivalent **attribute:value** of the `` el #### `base` (Object) -Maps to a newly-created `` element, where object properties map to attributes. +Maps to a newly-created `` element, where object properties map to attributes. ```js { @@ -413,7 +414,7 @@ Maps to a newly-created `` element, where object properties map to attribu #### `meta` ([Object]) -Each item in the array maps to a newly-created `` element, where object properties map to attributes. +Each item in the array maps to a newly-created `` element, where object properties map to attributes. ```js { @@ -433,7 +434,7 @@ Each item in the array maps to a newly-created `` element, where object pr #### `link` ([Object]) -Each item in the array maps to a newly-created `` element, where object properties map to attributes. +Each item in the array maps to a newly-created `` element, where object properties map to attributes. ```js { @@ -453,7 +454,7 @@ Each item in the array maps to a newly-created `` element, where object pr #### `style` ([Object]) -Each item in the array maps to a newly-created `