We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using babel-plugin-component here's my import import {CanvasPoster} from 'ui-lib' but when I using this: new CanvasPoster() it says
import {CanvasPoster} from 'ui-lib'
new CanvasPoster()
myPoster.vue?7d2b:33 Uncaught (in promise) ReferenceError: CanvasPoster is not defined
but i can console.log(CanvasPoster)
function CanvasPoster() { __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_classCallCheck___default()(this, CanvasPoster);
i can fix this problem to change
import CanvasPoster from 'ui-lib/lib/CanvasPoster',
does anyone know why this happen?
The text was updated successfully, but these errors were encountered:
我也遇到了一模一样的问题!
Sorry, something went wrong.
No branches or pull requests
I'm using babel-plugin-component
here's my import
import {CanvasPoster} from 'ui-lib'
but when I using this:
new CanvasPoster()
it says
but i can console.log(CanvasPoster)
i can fix this problem to change
does anyone know why this happen?
The text was updated successfully, but these errors were encountered: