📜  什么是steal.js - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:16.309000             🧑  作者: Mango

代码示例1
Reloads your application after a full reload cycle is complete.

import reload from "live-reload";

// Re-render your application after each reload.
reload(function(){
    render();
});
Pa