本文主要是介绍vue+vite+elements,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.安装
1> 安装vite(直接安装)
2> 安装好elements
3> 安装 windicss
windicss简单用法
<template>
<button class="btn">按钮</button>
</template>
<style scoped>
.btn
{
@apply bg-purple-500 border-1 rounded px-4 py-4 hover:bg-purple-700;
color: #fff;
}
</style>
2.vscode安装插件
(vue language features / vue3 snlppets / chinese .../ windicss...)
这篇关于vue+vite+elements的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!