If you haven’t used InertiaJS before, I’d highly recommend checking it out. It allows you to put together an app in no time at all, saves the headache of structuring an SPA if you don’t need it, and allows you to use VueJS (or other popular frontend frameworks) as your templating engine.
Read moreWhat is NUXT used for?
Nuxt. js enables developers to build Server Side Rendered applications in which a Node. js server will deliver HTML to the client based on your Vue components (rather than running JavaScript on the client side). This will allow for better SEO than traditional SPAs built using Vue.
Read moreWhen should we use Vuex?
It should be obvious you don’t have to keep data that’s only used by one component in the store. Since no other component needs to know about any changes to that data, one should manage it in the component using it. Vuex allows organisation of data into modules so you can keep everything tidy and maintainable.5 Ağu 2020
Read moreVUEX Store nedir?
Vuex , Vue .js state’ini merkezi olarak yönetmeye yarayan open-source bir kütüphanedir. Vue .js geliştiricileri tarafından geliştirilmektedir.15 Nis 2021
Read moreVuejs Store nedir?
Vuex tıpkı Facebook tarafından geliştirilen ve daha sonrasında topluluk tarafından devam ettirilen veri yönetimi kütüphaneleri gibi(Flux, Redux), karmaşık süreçleri daha merkezi ve yönetilebilir kılmayı hedefleyen, Vue’nun da yaratıcısı tarafından geliştirilen bir kütüphanedir.31 Ara 2018
Read moreVue JS Router nedir?
Vue Router , backend ihtiyacı duymadan sayfalarımızın url yapılarını yönetebileceğimiz bir eklentidir. Hazırlayacağımız yapıda url’i statik olarak verebileceğimiz gibi makale detay sayfası gibi tek şablondan yöneteceğimiz sayfalar için dinamik url yapıları da oluşturabiliriz.
Read moreIs Vuex local storage?
Using localStorage in your Vuex store LocalStorage is a broswer-store you can access in JavaScript — completely independent to the Vuex plugin.14 May 2020
Read more