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> <q-card class="bg-grey-1 q-py-md text-grey-7 q-ma-md"> <q-card-section> <div class="text-h4">Upload your design, it's easy!</div> </q-card-section> <q-card-section> <p class="text-subtitle1"> Watch our Tutorial to see how it works, or go directly to the Wizard, it will guide you through the process step-by-step. </p> </q-card-section> <q-card-section> <div class="row no-wrap"> <div class="col-auto"> <q-btn class="bg-grey-1 q-mr-md"> <q-icon left size="1em" name="fas fa-tv" />Watch Tutorial </q-btn> </div> <div class="col-auto"> <q-btn class="bg-grey-1"> <q-icon left size="1em" name="fas fa-magic" />Start wizard </q-btn> </div> </div> </q-card-section> </q-card> </template> <script> export default { // name: 'ComponentName', data() { return {}; } }; </script> <style> </style> |