# createLink 方法

接口 function createLink(url: string): void;

版本 1.0.0

// 引入
import { createLink } from 'project-libs';

// 单独引入
import createLink from 'project-libs/build/browser/createLink';

# 参数

参数 类型 是否必须 含义
url string url 地址

# 返回值

是否有返回值 类型 说明

# 小例子

// 使用
const url = 'http://xx.com/a.css';
createLink(url)