mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
parent
701f27a2d5
commit
b9853474ec
@ -20,7 +20,7 @@ import { ref } from 'vue'
|
||||
const value = ref([])
|
||||
|
||||
const props = {
|
||||
expandTrigger: 'hover',
|
||||
expandTrigger: 'hover' as const,
|
||||
}
|
||||
|
||||
const handleChange = (value) => {
|
||||
|
@ -3,8 +3,10 @@
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import type { CascaderProps } from 'element-plus'
|
||||
|
||||
let id = 0
|
||||
const props = {
|
||||
const props: CascaderProps = {
|
||||
lazy: true,
|
||||
lazyLoad(node, resolve) {
|
||||
const { level } = node
|
||||
|
Loading…
Reference in New Issue
Block a user