Element Plus快速开始(Vue 3.x)
<template>
<el-button @click="handleClick">点击我</el-button>
</template>
<script setup>
import { ElButton } from 'element-plus';
import { ref } from 'vue';
const count = ref(0);
function handleClick() {
count.value++;
}
</script>
<style scoped>
/* 在这里写入按钮的样式 */
</style>
这个例子展示了如何在Vue 3.x项目中使用Element Plus库,包括如何安装、导入和使用Element Plus组件。<script setup>
是Vue 3.x中的新特性,它允许你以更简洁的方式编写Vue组件。
评论已关闭