import 與 export
2025年3月29日小於 1 分鐘
目前,你無法在 KubeJS 中使用 import
/export
。然而,在你的腳本中定義的變數會暴露給所有相同類型的腳本。例如:
//priority: 10
let myList = [2, 8, 7]
console.log(myList) //[2, 8, 7]
//priority: 100
console.log(myList) // 這將無法運作
myList.push(82)
console.log(myList) // [2, 8, 7, 82]