-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
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
初始化项目后 选择组件库 yarn run dev启动一直loading #85
Comments
将.storybook/preview.js文件调整了以后,可以正常dev,参照,但是build遇到了同样的问题参照 Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: Package subpath './dist/utils/getDoclets' is not defined by "exports" in Desktop/text-pro/node_modules/vue-docgen-api/package.json |
vue-docgen-api中发现需要版本升级 然后将 import getDoclets from 'vue-docgen-api/dist/utils/getDoclets';
import getProperties from 'vue-docgen-api/dist/script-handlers/utils/getProperties';
import getDocblock from 'vue-docgen-api/dist/utils/getDocblock'; 改为 import {
Documentation,
getDoclets,
getProperties,
getDocblock,
} from 'vue-docgen-api'; |
解决了吗?我没找到 import getDoclets from 'vue-docgen-api/dist/utils/getDoclets'; 上面这三个导入 |
Describe the bug
初始化项目后yarn run dev启动一直loading
To Reproduce
Steps to reproduce the behavior:
Expected behavior
正常启动
Screenshots
Desktop (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: