Questions tagged [element-plus]
117 questions
0
votes
1 answer
How can I disable time in element plus datetime picker
I am using element plus DateTimePicker with vue3. how do I disable past time, from today's date. I didn't find any prop for the same

Uma U
- 51
- 5
0
votes
0 answers
Remove upload button in "el-upload" with list-type="picture-card" from Element Plus when one file uploaded
I want to remove this empty square when file is already uploaded, and show again, if there is no files. el-upload file and upload button
I wrote this code but it actually do nothing in case of hiding/showing this button.

Nikita
- 15
- 5
0
votes
0 answers
vue3-Element Plus form validation failed
When I enter text in the workHour field of el-form-item, it shows the message of "required: true" instead of "type: 'number'".
Even when I enter a number greater than 1 in the workHour field of el-form-item, it still shows the message of "type:…

Hedy
- 11
- 2
0
votes
0 answers
Infinte scroll at the place of panignation in vue3 with element plus
I am trying to make my grid scrollable infinitely like right now i am using el-pagination for loading new data after a finite chunk of data now i don't want to use that i want to make it scrollable infintely.
I have tried applying v-infinite-scroll…
0
votes
1 answer
How to trigger el-select's remote-method again after filtering a non-existing option
Currently using Element Plus' el-select component.
When filtering for a non-existent option, remote-method triggers fine and returns the expected result (empty since option is non-existent).
Since there's nothing to select, user clicks anywhere…

Nathaniel Yu
- 1
- 2
0
votes
0 answers
Using el-input in el-dropdown does not allow to input a whitespace into the input field
Environment
Vue Version: 3.3.4
Element Plus Version: 2.3.6
Browser / OS: Chrome/114.0.5735.134
Reproduction at Element Plus Pleyground
Steps to reproduce
Input some text into the field
Input a white space
What is Expected?
You can see a…
0
votes
1 answer
independant isActive states for groups of element plus buttons

Josh Gilbert
- 89
- 1
- 9
0
votes
1 answer
How to load element-plus with Vue3 in cypress component test?
If in Vue2 , we can use the components of ElementPlus like this:
#/cypress/component.js
import Vue from 'vue';
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
Vue.use(ElementUI)
But how to use 'element-plus' with…

秦小琳
- 1
0
votes
0 answers
I've made a Vue.js 3 and Tailwind component and i turn it into a package, but when i use it tailwind don't seem to apply
My issue is that i've made a vue.js 3 and tailwind app that have a form component (using some element-plus select component) what i've done is turn this component into an npm package so i can use it in an other project made in nuxt and…

Moussa
- 1
0
votes
2 answers
vite problem: element-plus can not use import type
I am a novice and have been using vite recently. I have tested it and Google it, but I am still unable to solve the problem
In vite app, when i import element-plus type,like ElInput...
Error: Module 'element plus' does not have an exported member'…

龙龙Ago
- 1
0
votes
0 answers
Property 'row' does not exist on type 'unknown'.ts(2339)
When i update Volar to 1.4.4,element-plus el-table use slot,ts error.
if use can solve the problem,but i wanna use

Wade
- 1
0
votes
0 answers
How to Add and Delete row in element-plus tree in Vue3
I want to add and delete row to element plus tree with buttons above the tree.
interface Tree {
id?: number
label: string
isPenultimate?: boolean
children?: Tree[]
}
const data: Ref = ref([
{
id: 1,
label: '전체 게시판',
…
0
votes
0 answers
0
votes
2 answers
style element-plus component in vue 3
I need help with styling component el-date-picker from element plus, can't figure it out.
Code for a text input from component:

Msover554
- 5
- 4
0
votes
0 answers
Nuxt 3 - How to change the order of css/style in the head
I'm using @element-plus/nuxt with the configurations same as the docs.
The problem is my custom css in nuxt config (main.scss) goes before the CSS of element plus. This causes my css has lower priority than element-plus's styles.
Is there any way to…

Son Tr.
- 776
- 6
- 18