原生js\JQuery中使用前端框架的模块
2021-01-29 06:14
标签:and The 模块 就是 网上 document vue from ada 在项目中使用xterm时,发现网上包括官方给出的使用方式都是Vue的那种import模块的, 但手头项目是原生js的,所以还是得考虑原生js使用这个模块, 经过一顿查资料和尝试,最后是这样使用的, 使用前先找到相应的js文件,再引入, 这个尝试目前就是这样的,使用也是正常的, 原生js\JQuery中使用前端框架的模块 标签:and The 模块 就是 网上 document vue from ada 原文地址:https://www.cnblogs.com/1394htw/p/13206079.htmlimport { Terminal } from ‘xterm‘;
import { FitAddon } from ‘xterm-addon-fit‘;
const term = new Terminal();
const fitAddon = new FitAddon();
term.loadAddon(fitAddon);
// Open the terminal in #terminal-container
term.open(document.getElementById(‘terminal-container‘));
// Make the terminal‘s size and geometry fit the size of #terminal-container
fitAddon.fit();
var term = new window.Terminal();
term.fitAddon = new window.FitAddon.FitAddon();
文章标题:原生js\JQuery中使用前端框架的模块
文章链接:http://soscw.com/index.php/essay/48559.html