mirror of
https://github.com/BewlyBewly/BewlyBewly.git
synced 2025-04-14 13:15:29 +00:00
15 lines
210 B
Vue
15 lines
210 B
Vue
<script lang="ts" setup>
|
|
type Size = 'small' | 'medium' | 'large'
|
|
interface Props {
|
|
size?: Size
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<input type="text" class="b-input">
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|