2 pages tagged with "programming"
Using Vue Select in Vue 3
October 21, 2022 - 41 words - 1 mins
Just a reminder for me to use vue select for Vue 3 (version ^4.0.0-beta.3).
<v-select
:options="[{ hello: 'world' }]"
:getOptionLabel="(e: any) => e.world"
@update:modelValue="handleChangeUser"
:value="{ hello: 'world' }"
/>
s…
read more
How to Install PHP Debian Sury Package
March 26, 2022 - 65 words - 1 mins
Run this in your command line, as per the instruction in the wiki:
curl -sSL https://packages.sury.org/php/README.txt | sudo bash -x
And that's it, you're done!
Other guides complicate this process so much it does not make sense, just enter that command and you're good to go. Happy coding!
read more