7 lines
392 B
Vue
7 lines
392 B
Vue
<template>
|
|
<div><!-- Add helper classes to wrapper div if margin is needed -->
|
|
<!-- Hide label but still accessible to screen reader with .visually-hidden -->
|
|
<label for="exampleFormControlInput1" class="form-label visually-hidden">Email address</label>
|
|
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="name@example.com">
|
|
</div>
|
|
</template>
|