Vectre is a set of lightweight, simple and responsive Vue components based on Spectre CSS
In this blog post with the power of Nuxt Content module and using the awesome Vuetify, we create a Medium-Styled blog site.
In this article, you will create Chatty, a chatroom Progressive Web App (PWA) that stores data on the device while offline, and synchronises in real-time with other devices when online using Amplify DataStore, GraphQL and Amazon DynamoDB.
This is a sample application created with JHipster, with the Vue.js blueprint.
JHipster is a development platform to quickly generate, develop, and deploy modern web applications and microservice architectures.
We support many frontend technologies, including Angular, React, and Vue. We even have mobile app support for Ionic and React Native! On the backend, we support Spring Boot (with Java or Kotlin), Micronaut, Quarkus, Node.js, and .NET. For deployment, we embrace cloud native principles with Docker and Kubernetes. Deployment support exists for AWS, Azure, Cloud Foundry, Google Cloud Platform, Heroku, and OpenShift.
In this tutorial series, I will show you how to build a job board from scratch.
The project will be split into two parts. One part for the employers where they can submit jobs and one part for the job seekers where they can find jobs and apply for them.
https://twitter.com/vuejsamsterdam/status/1311643642654752768
Normally shared code is in the form of an npm package with importable components, and that can be done with Nuxt, but the thing about Nuxt is that it offers some lovely features that are exclusively tied to its directory structure, and it only allows for one such structure.
What if we want to share pages, layouts or components between projects? Letβs setup a sample project and walk through some ways to do that.
PrimeVue provides 60+ rich set of open source UI components for Vue 3 with stunning bootstrap, material and custom themes along with PrimeFlex css utilities, dashboards, icons, visual theme designer and more.
Do you still need Vuex in Vue 3? In this video, we will be looking at the changes made to Vuex 4 and then using these concepts to create a todo using Vue 3's composition API with typescript support.
I recently played around with the idea of using renderless provider components not only for data but for styles too. This pattern seems especially promising when it comes to building base components with style modifier props.
<template>
<BaseCard class="ArticleTeaser">
<BaseCardImage src="..." alt="...">
<BaseCardBody padding="['m', 'l@m']">
<!-- ... -->
</BaseCardBody>
</BaseCard>
</template>