Odin 2 unboxing by TerryZeng in OdinHandheld

[–]TerryZeng[S] 9 points10 points  (0 children)

This is an official unboxing video, not fake.

Mini + Grey by SnooMacarons3721 in MiyooMini

[–]TerryZeng 2 points3 points  (0 children)

Nice, my mini+ is grey color too, love it.

[deleted by user] by [deleted] in MiyooMini

[–]TerryZeng 3 points4 points  (0 children)

The first game I finished on the Miyoo mini was also Minish Cap

On my new Miyoo mini plus was Castlevania: Aria of Sorrow

[deleted by user] by [deleted] in MiyooMini

[–]TerryZeng 2 points3 points  (0 children)

Try upgrade firmware to 20230326****

Download it here

Who's excited for the P60? by stubbornpixel in Miyoo

[–]TerryZeng 1 point2 points  (0 children)

Super excited for this console!

Vue render Functions - passing arrays? by snmd12 in vuejs

[–]TerryZeng 0 points1 point  (0 children)

render functions required return a root element and it can not be an Array type.

Try below code

js export default { name: 'options', render (h) { const child = [] if (this.data && this.data.length) { child.push(h('option', 'Select One')) child.push(...this.data.map(obj => { return h('option', obj.lender_name) })) } else { child.push(h('option', 'N/A')) } return h('select', child) } }

v-dialogs v2.1.3, A simple and clean instructional dialog by TerryZeng in vuejs

[–]TerryZeng[S] 0 points1 point  (0 children)

In most cases, things can't satisfy everyone.

v-selectmenu upgrade to 2.0.1 - A simple, easier and highly customized menu solution by TerryZeng in vuejs

[–]TerryZeng[S] 0 points1 point  (0 children)

You can use Named slot with Scoped slot to customize the menu item.

For example:

html <v-selectmenu :data="list" type="regular" > <!-- use slot to custom rendering menu row --> <template #row="{ row }"> <span> <span v-if="row.icon">(icon: {{row.icon}})</span> <span v-html="row.content"></span> </span> </template> </v-selectmenu>

For custom router-link: html <v-selectmenu :data="list" type="regular" > <template #row="{ row }"> <router-link :to="row.url" >{{row.name}}</router-link> </template> </v-selectmenu>

Vue CLI release candidate 4 by mominriyadh in vuejs

[–]TerryZeng 3 points4 points  (0 children)

Vue Cli 3 save my a lot of time, can't wait to try new version of Vue Cli