mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-16 13:08:06 +01:00
17 lines
227 B
Vue
17 lines
227 B
Vue
<template>
|
|
<span :class="name" />
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue'
|
|
|
|
export default defineComponent({
|
|
props: {
|
|
name: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
}
|
|
})
|
|
</script>
|