15 lines
199 B
Vue
15 lines
199 B
Vue
<script setup>
|
|
defineProps({
|
|
class: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div :class="['font-bold text-primary', $props.class]">
|
|
Piccadilly
|
|
</div>
|
|
</template>
|