Open juvenrui opened 4 years ago
使用es6 import导入的时候,出现有变量未定拉的提示。在kindeditor-all.js 1190行, 变量lenth, 需要先定义变量: var lenth;
es6 module 要求脚本是"use strict"模式,所以未定义的变量都会有异常抛出。
扯犊子呢
使用es6 import导入的时候,出现有变量未定拉的提示。在kindeditor-all.js 1190行, 变量lenth, 需要先定义变量: var lenth;
es6 module 要求脚本是"use strict"模式,所以未定义的变量都会有异常抛出。