vue

typescript与javascript

Posted by アライさん on 2022年08月18日

export

1
2
3
4
5
6
const temp ={};
//使得其他模块,import后可以访问temp。
//不加default,其他模块需要使用名称temp引入。
//加default,其他模块可以用任意名称引入。
//import newName from '';
export default temp;

blob

blob是一个不可变、原始数据的类文件对象。它的数据可以按文本或二进制的格式进行读取,也可以转换成 ReadableStream 来用于数据操作。

类型判断typeof

(typeof type === "string") ? type : type[0]