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
If I install component via Vue.use and don't add it to transpileDependencies option of Vue CLI, I get the following error on browsers that don't support Enhanced Object Literals:
Uncaught SyntaxError: Unexpected token (
The error arises because of the following code in src/plugin.js:
If I install component via Vue.use and don't add it to transpileDependencies option of Vue CLI, I get the following error on browsers that don't support Enhanced Object Literals:
The error arises because of the following code in src/plugin.js:
To fix the issue it is necessary change line #4 to:
To work around the issue, install components by calling Vue.component:
The text was updated successfully, but these errors were encountered: