提问人:bear 提问时间:9/14/2023 更新时间:9/14/2023 访问量:255
我无法让 HTMX 与 Bun 一起使用,因为我在导入时遇到了问题
I couldn't make HTMX work with Bun because I had a issue with importing
问:
安装方式
bun add htmx.org
bun add v1.0.1 (31aec4eb)
installed [email protected]
1 packages installed [2.40s]
导入import "htmx.org";
用于
htmx.onLoad(function(content) {
var sortables = content.querySelectorAll(".sortable");
for (var i = 0; i < sortables.length; i++) {
var sortable = sortables[i];
new Sortable(sortable, {
animation: 150,
ghostClass: 'blue-background-class'
});
}
})
收到错误Cannot find name 'htmx'.ts(2304)
我正在尝试使用sortableJS,但是当我导入HTMX时,我没有收到HTMX找到错误。
感谢您的帮助。
答: 暂无答案
评论