mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 07:07:48 +01:00
* update packages for vue3 * fix make bundle and make checkbundle to include bundle-components * add lnbits/static/bundle-components.js --------- Co-authored-by: Pavol Rusnak <pavol@rusnak.io>
16 lines
407 B
JavaScript
16 lines
407 B
JavaScript
window.app.component('lnbits-extension-rating', {
|
|
name: 'lnbits-extension-rating',
|
|
props: ['rating'],
|
|
template: `
|
|
<div style="margin-bottom: 3px">
|
|
<q-rating
|
|
v-model="rating"
|
|
size="1.5em"
|
|
:max="5"
|
|
color="primary"
|
|
><q-tooltip>
|
|
<span v-text="$t('extension_rating_soon')"></span> </q-tooltip
|
|
></q-rating>
|
|
</div>
|
|
`
|
|
})
|