mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
15 lines
163 B
Vue
15 lines
163 B
Vue
|
<script setup lang="ts">
|
||
|
defineProps({
|
||
|
type: {
|
||
|
type: String,
|
||
|
required: true,
|
||
|
},
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<code>
|
||
|
{{ type }}
|
||
|
</code>
|
||
|
</template>
|