JSDM

HTML

 
1
2
  <head>
3
    <meta charset="UTF-8" />
4
    <meta name="viewport" content="width=device-width,initial-scale=1.0" />
5
    <script src="https://unpkg.com/vue@next"></script>
6
    <!-- import CSS -->
7
    <link rel="stylesheet" href="https://unpkg.com/element-plus/dist/index.css">
8
    <!-- import JavaScript -->
9
    <script src="https://unpkg.com/element-plus"></script>
10
    <title>Element Plus demo</title>
11
  </head>
12
  <body>
13
    <div id="app">
14
      <el-button>{{ message }}</el-button>
15
    </div>
16
    <script>
17
      const App = {
18
        data() {
19
          return {
20
            message: "Hello Element Plus",
21
          };
22
        },
23
      };
24
      const app = Vue.createApp(App);
25
      app.use(ElementPlus);
26
      app.mount("#app");
27
    </script>
28
  </body>
29

CSS

xxxxxxxxxx
1
 
1
? ?
? ?
必须是有效的URL
+ 添加另一个资源

JS

xxxxxxxxxx
1
 
1
必须是有效的URL
+ 添加另一个资源
Close

文件管理 点击文件查看URL

图片

  1. 暂无文件

CSS

  1. 暂无文件

JavaScript

  1. 暂无文件

其他

  1. 暂无文件
拖动文件到上面的区域或者:
加载中 ..................