We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6787f5 commit 997c947Copy full SHA for 997c947
1 file changed
docs/coding/timeline.md
@@ -541,6 +541,7 @@ the `finish()` method):
541
```vue
542
<script setup>
543
import useAPI from '@/core/composables/useAPI'
544
+import { Button } from '@/uikit/components/ui/button'
545
const api = useAPI()
546
547
function finish(goto) {
@@ -551,9 +552,9 @@ function finish(goto) {
551
552
<template>
553
<div class="page">
554
<h1 class="title is-3">Experiment</h1>
- <button class="button is-success is-light" id="finish" @click="finish()">
555
+ <Button variant="success-light" @click="finish()">
556
next <i-fa6-solid-arrow-right />
- </button>
557
+ </Button>
558
</div>
559
</template>
560
```
0 commit comments