vant3升级vant4后,使用Toast、Dialog报样式不存在异常解决方法

异常现象:

vant3升级vant4,直接采用v4的方法使用showToast/showDialog,但直接就报错了,如下:

[vite] Internal server error: Failed to resolve import "E:/git_sh/project_code/node_modules/vant/es/show-confirm-dialog/style" from "src\service\index.ts". Does the file exist?  

异常分析:

查看node_modules目录中,vant库中只有一个toast,没有showToast,故,自然找不到 /node_modules/vant/es/show-confirm-dialog/style 这个文件。

感觉是vant4的bug,那就需要我们改配置来解决这个问题了。

处理方案:

修改vite.config.ts文件:

export default defineConfig({
  plugins: [
    vue(),
    styleImport({
      libs: [
        {
          libraryName: "vant",
          esModule: true,
          resolveStyle: name => {
            //v3 return `../es/${name}/style`;
            //v4
            if (name == "show-toast" || name == "show-loading-toast") {
              return `../es/toast/style`;
            } else if (name == "show-dialog" || name == "show-confirm-dialog") {
              return `../es/dialog/style`;
            } else {
              return `../es/${name}/style`;
            }
          }
        }
      ]
    }),
...

按这个修改配置,就能解决前边找不到样式文件的报错了。

希望后边vant官方能解决这个bug,现在也只能遇到具体问题具体分析处理了。

posted on 2024-08-22 16:20  逍遥云天  阅读(395)  评论(0编辑  收藏  举报

导航