求原生ElementUI的开发文档

img

谁有这个呀,就是

这种 ,各位谁有这个开发文档的地址,或者来源出

img

https://unpkg.com/element-ui@2.15.12/lib/theme-chalk/index.css@2.15.12/lib/theme-chalk/index.css
cdn 地址
https://element.eleme.cn/#/zh-CN/component/installation#cdn

<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <!-- 引入样式 -->
    <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
    <style>
 
    </style>
</head>
 
<body>
    <div id="app">
        <template>
           
        </template>
    </div>
 
 
</body>
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.14"></script>
<!-- 引入组件库 -->
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
 
<script>
 
 
 
    const app = new Vue({
        // 挂载要管理的元素
        el: '#app',
 
        // 定义数据
        data() {
            return {
              
            }
 
        },
        mounted() {
           
        },
        methods: {
           
        }
    })
 
</script>
 
</html>