CDN引入固定版本方法

以element-ui为例
最新版本样式(Element升级会影响使用)


<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">

<script src="https://unpkg.com/element-ui/lib/index.js">script>

固定方法


<link rel="stylesheet" href="https://unpkg.com/[email protected]/lib/theme-chalk/index.css">

<script src="https://unpkg.com/[email protected]/lib/index.js">script>

你可能感兴趣的:(CDN引入固定版本方法)