You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,13 @@
2
2
3
3
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
* add support for global inject options ([#568](https://github.com/nuxt/vue-meta/issues/568)) ([8b02eb2](https://github.com/nuxt/vue-meta/commit/8b02eb2ac6693b07caeb76efab106af1d4b92988))
@@ -114,9 +114,12 @@ function _nonIterableSpread() {
114
114
thrownewTypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
@@ -142,8 +145,7 @@ function _createForOfIteratorHelper(o) {
142
145
thrownewTypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
143
146
}
144
147
145
-
varit,
146
-
normalCompletion=true,
148
+
varnormalCompletion=true,
147
149
didErr=false,
148
150
err;
149
151
return{
@@ -1629,10 +1631,12 @@ function refresh(rootVm, options) {
@@ -1695,6 +1699,8 @@ function tagGenerator(options, type, tags, generatorOptions) {
1695
1699
1696
1700
var_ref2=generatorOptions||{},
1697
1701
appId=_ref2.appId,
1702
+
_ref2$isSSR=_ref2.isSSR,
1703
+
isSSR=_ref2$isSSR===void0 ? true : _ref2$isSSR,
1698
1704
_ref2$body=_ref2.body,
1699
1705
body=_ref2$body===void0 ? false : _ref2$body,
1700
1706
_ref2$pbody=_ref2.pbody,
@@ -1724,7 +1730,7 @@ function tagGenerator(options, type, tags, generatorOptions) {
1724
1730
returntagsStr;
1725
1731
}
1726
1732
1727
-
varattrs=tag.once ? '' : " ".concat(attribute,"=\"").concat(appId||ssrAppId,"\"");// build a string containing all attributes of this tag
1733
+
varattrs=tag.once ? '' : " ".concat(attribute,"=\"").concat(appId||(isSSR===false ? '1' : ssrAppId),"\"");// build a string containing all attributes of this tag
1728
1734
1729
1735
for(varattrintag){
1730
1736
// these attributes are treated as children on the tag
@@ -1779,7 +1785,7 @@ function tagGenerator(options, type, tags, generatorOptions) {
@@ -73,8 +76,7 @@ function _createForOfIteratorHelper(o) {
73
76
thrownewTypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
0 commit comments