@mesg-components/textfield
v1.0.4
Published
## Install
Downloads
1
Keywords
Readme
@MESG-COMPONENTS/TEXTFIELD
Install
npm install @mesg-components/textfield
or yarn add @mesg-components/textfield
Properties
- type:
String
, Optional, The default type istext
- label:
String
, Required. - placeholder:
String
, Required. - v-model:
String
, Required.
Example
<template>
<div class="container">
<TextField type="text" label="Link to your contribution" placeholder="Example ..." v-model="value" />
</div>
</template>