Category: Vuejs
How can you ensure accessibility when altering the DOM with JavaScript?
Ensuring accessibility when altering the DOM with JavaScript involves several best practices. Here are some key strategies to maintain or enhance accessibility: By following these…
Next generation coding
“Next-generation coding” is a broad term that can refer to several emerging trends and technologies in the field of software development. Here are a few…
What is nuxt?
Nuxt.js is a framework for building Vue.js applications. It extends Vue.js to provide additional features such as server-side rendering (SSR), static site generation (SSG), and…
What’s new in Vue3
Vue 3, released in September 2020, brought several improvements and new features over Vue 2. Here are some of the key changes: These are just…
Next-Gen JavaScript
let & const Read more about let : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let Read more about const : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const let and const basically, replace var . You use let instead of var and const instead of var if you plan on never re-assigning…
Vuejs Interview Questions
1) What is VueJS? Vue.js is an open-source, progressive Javascript framework for building user interfaces that aim to be incrementally adoptable. The core library of VueJS…