Learn Vue JS course Learn Javascript and Vue JS Learn VueJS course Learn VueJS Tutorial

Build a Drag-and-Drop Trello Board with Vue.js

Bootstrap the Project

In this lesson, we’ll bootstrap the Trello board project using Nuxt.js. Nuxt is a meta framework built on top of Vue that provides a wealth of developer conveniences for working with Vue 3.

Nuxt also provides SSR for Vue components but we won’t need that for this course. You can turn off server side rendering with the following setting.

// nuxt.config.ts
export default defineNuxtConfig({
  ssr: false, // ⬅️
});

Links