纯 html 文件中使用 Vue+ElementUI
很简单只需要引入各自的CDN地址即可,可以直接复制我的,或者去官网复制最新的CDN地址Element官网:https://element.eleme.cn/#/zh-CN/component/installationVue.js官网:https://cn.vuejs.org/v2/guide/installation.html<!-- cdn引入ElementUI样式 --><l
·
只需要引入各自的CDN地址即可,可以直接复制我的,或者去官网复制最新的CDN地址
Element官网:https://element.eleme.cn/#/zh-CN/component/installation
Vue.js官网:https://cn.vuejs.org/v2/guide/installation.html
这里我已经下载好了可以直接用:https://download.csdn.net/download/y1534414425/15783372
<!-- cdn引入ElementUI样式 -->
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
<!--cdn引入ElementUI组件必须先引入Vue-->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<!-- cdn引入ElementUI组件库 -->
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
<script type="text/javascript">
// 配置对象 options
const vm = new Vue({
// 配置选项(option)
// element: 指定用vue来管理页面中的哪个标签区域
el: '#app',
data: {
isCollapse: true
},
methods: {
}
});
</script>
效果:
更多推荐
已为社区贡献3条内容
所有评论(0)