docs: update the tree component filter example data type (#12942)

This commit is contained in:
btea
2023-05-26 11:47:04 +08:00
committed by GitHub
parent c42d160445
commit 232649a42e

View File

@@ -16,9 +16,7 @@ import { ref, watch } from 'vue'
import { ElTree } from 'element-plus'
interface Tree {
id: number
label: string
children?: Tree[]
[key: string]: any
}
const filterText = ref('')