On this page

Label

Example usage

<template>
	<Label>Box title</Label>
	<Input v-model="inputModel" placeholder="Text" />
</template>

<script>
	import { Label, Input } from 'figma-plugin-ds-vue'

	export default {
	    data: () => ({
		    inputModel: // String || Number
	    }),
		components: {
			Label,
	        Input
		}
	}
</script>