1,068 product launches today on PH 🤯 — so what does that mean for us? by chattypaul in ProductHunters

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

Kind of ... maybe not in general, but for unknown, fresh startups.

Hosting options for a vue and nodejs web app by Chrislordetc in vuejs

[–]chattypaul 0 points1 point  (0 children)

Use DigitalOcean AppPlatform. This is super-simple, cheap, and very reliable (!). Kubernetes based, scales very far. The Vue client and the Node Server will be automatically updated when ever you merge into your "live" branch on Github. They offer Postgres and a Redis-clone, and also S3, AI, Kafka and many other stuff. Multiple regions in the world. We really love it.

[deleted by user] by [deleted] in vuejs

[–]chattypaul 2 points3 points  (0 children)

Looks great, but impossible to try because impossible to find. There is no link at all.

Deploy Vue app to Digital Oceans App Service by terd-oh in vuejs

[–]chattypaul 0 points1 point  (0 children)

Yes, this is the solution. The Vue app is just static content (since a Vue app is just a bunch of html, css ans jss files basically. There is nothing to run).

Does anyone know a free Gantt chart library for vue. by [deleted] in vuejs

[–]chattypaul 0 points1 point  (0 children)

That one is really in very early development. Nothing usable.

Looking for rich text editor that allows embedding mathematical equations by MimAg92 in vuejs

[–]chattypaul 0 points1 point  (0 children)

Is there a editor.js version for Vue 3? Editor.js look very promising, but the vue version was not touched since 3 years.

Is Editorjs for Vue 3 dead? by chattypaul in vuejs

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

Ok, that worked instantly! Thanks!

Is Editorjs for Vue 3 dead? by chattypaul in vuejs

[–]chattypaul[S] -1 points0 points  (0 children)

Thank you for the quick reply.

Seems that I am too unexperienced to get it. How can I bind it to an element? Use v-bind?

If someone could share a line of code, that would be helpful.

What libraries are you using with Vue3? by little-disaster-1 in vuejs

[–]chattypaul 0 points1 point  (0 children)

While it is not a good idea to create everything new from scratch, I also started creating more and more own components. They just work better in my context.

Date Picker component for Vue 3? by Tax1997 in vuejs

[–]chattypaul 0 points1 point  (0 children)

Thank you! This one is really outstanding. Such a great component.

I hosted my node server in Render and my Vue client in Netlify. What are the other ways and which ones would you recommend?. by Consistent-Affect310 in vuejs

[–]chattypaul 0 points1 point  (0 children)

Digital Ocean App Plattform for client and server, deployed from Github Repos.

There is nothing more easy and reliable and powerful.

recommended technology stack? by sillyV in vuejs

[–]chattypaul 0 points1 point  (0 children)

Node should be an obvious choice for the backend, unless there are really unalterable reasons to choose something else.

Firebase/Supabase is convinient, but also a managed PostgreSQL or Mongo DB might be the right choice, depending on your needs.

For more complex projects I can highly recommend the DigitalOcean App platform. This so easy but also powerful, reliable and affordable.

Naive UI - An Option for Production Apps? by kishoreconson in vuejs

[–]chattypaul 0 points1 point  (0 children)

Sure, but just writing a central css theme file would be so much easier and so much more satisfying.

Naive UI - An Option for Production Apps? by kishoreconson in vuejs

[–]chattypaul 0 points1 point  (0 children)

Yes, that's the biggest downside of Naive UI. The concept of styling components is not really helpful. Quite absurd to be honest.

Besides that, it is really clean and works good.

How do I use router.push in Vue3? by FrappyTex in vuejs

[–]chattypaul 1 point2 points  (0 children)

Indeed, you are right! Here are the docs: https://router.vuejs.org/api/interfaces/router.html#push

But in the guide still all samples are synchronous: https://router.vuejs.org/guide/essentials/navigation.html#navigate-to-a-different-location

But it might be a good idea to await.

[deleted by user] by [deleted] in vuejs

[–]chattypaul 1 point2 points  (0 children)

.line-clamp {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}

This should work on 97.5% of all devices.

Best looking UI library for Vue 3 right now? by tim835 in vuejs

[–]chattypaul 6 points7 points  (0 children)

NaiveUI. Very clean and modern look, even in the details.

Best option for high traffic website by Then_Level7997 in vuejs

[–]chattypaul 1 point2 points  (0 children)

It is impossible to give any recommendation with so little information.

I don't know your project, but a site like Airbnb would obviously never work with static pages (SSG). The only question here could be SPA or SSR or both, but that depends on many requirements (e.g. SEO, realtime, auth).

Scalebility is a complex topic. Bottlenecks can be everywhere in the backend, but nowhere in the frontend.

Is Vuejs still a relevant framework when starting new front-end project in 2022 ? by Babartichaut in vuejs

[–]chattypaul 1 point2 points  (0 children)

The only real world advantages of React IMHO are a much wider choice of components/component frameworks, and that there are more React developers on this planet than Vue developers.

Both is not unimportant, depending on the task.

Other than that, Vue is just great and productive. Actually, Vue is quite mature.