Is it possible to append a percent symbol % the the number value of this component http://quasar-framework.org/components/knob.html ?

Use placeholder. Example from demo source:
<!-- With custom placeholder -->
<q-knob
v-model="model"
:min="min"
:max="max"
:placeholder="'$ ' + model"
></q-knob>
In your case: :placeholder="model + ' %'"
Great, thanks !
@rstoenescu Um, the documentation is wrong on this
<!-- With custom placeholder -->
<q-knob
v-model="model"
:min="min"
:max="max"
:placeholder="'$ ' + model"
></q-knob>
^Doesn't work. But this works:
<!-- With custom placeholder -->
<q-knob
v-model="model"
:min="min"
:max="max"
>
{{model}} %
</q-knob>
Find this out, by looking to your source code examples where you are also using {{model}} % approach .
https://github.com/quasarframework/quasar-play/blob/master/src/components/showcase/forms/knob.vue
Ah, sorry, gave out the v0.15 way :)
The v0.15 documentation still doesnt have the update
The v1.0 documentation doesn't mention anything about a placeholder prop. Glad I found this thread.
@wwwizzarrdry - That's because it's now done over the default slot with the show-value prop.
https://quasar.dev/vue-components/knob#Example--Show-value
Scott
Most helpful comment
@rstoenescu Um, the documentation is wrong on this
^Doesn't work. But this works:
Find this out, by looking to your source code examples where you are also using
{{model}} %approach .https://github.com/quasarframework/quasar-play/blob/master/src/components/showcase/forms/knob.vue