0
点赞
收藏
分享

微信扫一扫

前端新框架 Element UI


官网:​​Element - The world's most popular Vue UI framework​​

和Bootstarpui框架类似。这也是一个ui框架,不过需要搭配vue进行使用

前端新框架 Element UI_html

 

<!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-button>默认按钮</el-button>
<el-button type="primary">主要按钮</el-button>
<el-button type="success">成功按钮</el-button>
<el-button type="info">信息按钮</el-button>
<el-button type="warning">警告按钮</el-button>
<el-button type="danger">危险按钮</el-button>
<el-dialog :visible.sync="visible" title="Hello world">
<p>Try Element</p>
</el-dialog>

</div>
</body>
<!-- import Vue before Element -->
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<!-- import JavaScript -->
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
<script>
new Vue({
el: '#app',
data: function() {
return { visible: false }
}
})
</script>
</html>

 使用非常的简单。点击可以弹出来弹框

前端新框架 Element UI_前端_02

 ui非常的漂亮

已经支持vue2.x 和vue3.x

默认就是标签就叫 el-button

举报

相关推荐

0 条评论