-
Notifications
You must be signed in to change notification settings - Fork 895
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
vant以及nutui的Toast 无法展示 #141
Comments
同遇到,哥们后来怎么解决的 |
因为那个自动导入组件不会生成,所以简单解决就是手工在页面导入组件和样式再使用 |
<nut-toast v-if="false" /> |
在main.ts中引入toast的样式即可,import '@nutui/nutui/dist/packages/toast/index.scss'; `import { createApp } from 'vue'; const app = createApp(App); // 路由 // 国际化 // 状态管理 app.mount('#app'); |
No description provided.
The text was updated successfully, but these errors were encountered: