Skip to content

Commit

Permalink
Coloring
Browse files Browse the repository at this point in the history
  • Loading branch information
Razikus committed Feb 20, 2024
1 parent f5e8593 commit 406647c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions InBrowserTools/src/pages/UUIDGeneratorPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<q-page padding>
<div class="q-pa-md">
<q-select v-model="selectedVersion" emit-value :options="uuidVersions" label="Select UUID version" />
<q-btn @click="generateUUID" label="Generate UUID" class="q-ma-md"/>
<q-btn color="primary" @click="generateUUID" label="Generate UUID" class="q-ma-md"/>
<q-input style="font-size: 30px;" v-model="uuid" label="Generated UUID" readonly />
<q-btn @click="copyUUID" icon="content_copy" class="q-ml-md" :disable="!uuid">Copy</q-btn>
<q-btn color="primary" @click="copyUUID" icon="content_copy" class="q-ml-md" :disable="!uuid">Copy</q-btn>

<div class="q-mt-lg">
<q-slider v-model="batchSize" :min="1" :max="1000" label="Batch Size" />
<q-btn @click="generateBatchUUID" :label="'Generate Batch UUID: ' + batchSize" class="q-ma-md"/>
<q-btn @click="copyBatchUUID" icon="content_copy" class="q-ml-md" :disable="batchUUIDs.length === 0">Copy Batch</q-btn>
<q-btn @click="copyBatchUUIDAsJSON" icon="content_copy" class="q-ml-md" :disable="batchUUIDs.length === 0">Copy as Json Array</q-btn>
<q-btn color="primary" @click="generateBatchUUID" :label="'Generate Batch UUID: ' + batchSize" class="q-ma-md"/>
<q-btn color="primary" @click="copyBatchUUID" icon="content_copy" class="q-ml-md" :disable="batchUUIDs.length === 0">Copy Batch</q-btn>
<q-btn color="primary" @click="copyBatchUUIDAsJSON" icon="content_copy" class="q-ml-md" :disable="batchUUIDs.length === 0">Copy as Json Array</q-btn>
<div v-for="(uuid, index) in batchUUIDs" :key="index" class="q-mt-md">{{ uuid }}</div>
</div>
</div>
Expand Down

0 comments on commit 406647c

Please sign in to comment.