element-plus的CDN引用以及结合VUE3使用

element-plus

npm 安装
推荐使用 npm 的方式安装,它能更好地和 webpack 打包工具配合使用。

npm install element-plus --save

CDN
目前可以通过 unpkg.com/element-plus 获取到最新版本的资源,在页面上引入 js 和 css 文件即可开始使用。

1
2
3
4
引入样式
<link rel="stylesheet" href="https://unpkg.com/element-plus/lib/theme-chalk/index.css">
引入组件库
<script src="//i2.wp.com/unpkg.com/element-plus/lib/index.js"></script>

具体代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <!-- import CSS -->
  <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
</head>
<body>
  <div id="app">
    <el-button @click="visible = true">Button</el-button>
    <el-dialog :visible.sync="visible" title="Hello world">
      <p>Try Element</p>
    </el-dialog>
  </div>
</body>
  <!-- import Vue before Element -->
  <script src="//i2.wp.com/unpkg.com/vue/dist/vue.js"></script>
  <!-- import JavaScript -->
  <script src="//i2.wp.com/unpkg.com/element-ui/lib/index.js"></script>
  <script>
    new Vue({
      el: '#app',
      data: function() {
        return { visible: false }
      }
    })
  </script>
</html>