Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | <template> <div class="newsletter-box"> <q-card square=""> <q-card-section> <div class="text-h6 text-grey title-has-border">Stay in touch</div> <div class="text-body2">Receive the latest job offers every week in your Inbox</div> </q-card-section> <q-card-section> <q-input autogrow label="Your email here" v-model="email" > <template v-slot:prepend> <q-icon name="email" /> </template> </q-input> </q-card-section> <q-card-actions vertical> <q-btn color="primary">Subscribe</q-btn> </q-card-actions> </q-card> </div> </template> <script> export default { // name: 'ComponentName', data () { return { email: '' } } } </script> <style> </style> |