element UI框架注意事项

element UI框架注意事项

使用前配置

<!-- 引入样式 -->
<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>

需要使用Vue挂载

new Vue({
    el:'#app'
})