gpt4 book ai didi

vue.js - vue + chosen-js : can not import css of chosen-js with chosen-sprite. png

转载 作者:搜寻专家 更新时间:2023-10-30 22:46:48 24 4
gpt4 key购买 nike

我正在使用 npm、Vue 和 Webpack。我想在 jQuery 中使用 Chosen 库,但是我无法导入 chosen-js/chosen.css 因为我遇到了错误。如何导入Chosen的css文件?

代码:

<script>
import $ from 'jquery';
window.$ = window.jQuery = $;
import chosen from 'chosen-js';
import 'chosen-js/chosen.css';

export default {
mounted: function() {
$('.select').chosen({
search_contains: true,
});
},
};
</script>

<template>
<div>
<select class="select">
<option selected>aaa</option>
<option>bbb</option>
<option>ccc</option>
</select>
</div>
</template>

错误:

ERROR in ./node_modules/chosen-js/chosen-sprite.png 1:0
Module parse failed: Unexpected character '�' (1:0)
You may need an appropriate loader to handle this file type.
(Source code omitted for this binary file)

最佳答案

尝试添加图像加载器,以便 WebPack 知道如何处理 png 文件。这还将为您提供在捆绑过程中压缩图像文件的选项。这是一个链接:https://www.npmjs.com/package/image-webpack-loader

关于vue.js - vue + chosen-js : can not import css of chosen-js with chosen-sprite. png,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53158418/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com