用cdn方式引入vue和elementui
服务端项目不想搞前后端分离,又想用vuevue和elementui版本必须匹配。vue2 可以这样https://blog.csdn.net/milli236/article/details/80511044vue3
·
服务端项目不想搞前后端分离,又想用vue
vue和elementui版本必须匹配。
vue2 可以这样https://blog.csdn.net/milli236/article/details/80511044
vue3
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<div id="app">
<el-button @click="visible = true">Button</el-button>
<el-dialog :visible.sync="visible" title="Hello world">
<p>Try Element</p>
</el-dialog>
</div>
</body>
<!-- vue 最新版本,可以指定3的版本 -->
<script src="https://unpkg.com/vue@next"></script>
<!-- elementui 样式 -->
<link rel="stylesheet" href="https://unpkg.com/element-plus/lib/theme-chalk/index.css">
<!-- elementui 版本兼容的js -->
<script src="https://unpkg.com/element-plus/lib/index.full.js"></script>
<script>
const Counter = {
data() {
return {
visible: true
}
}
}
Vue.createApp(Counter).mount('#app')
</script>
</html>
更多推荐
已为社区贡献1条内容
所有评论(0)