Nuxt & Vue
Nuxt
nuxt is a framework for vue.js
apps, that adds server-side rendering. Drastically increases SEO capability of the Website, as server side rendering returns the whole page to the Search Engine. directory structure Install with:
Directories
Root level directoruis
components
: create Vue components in here starting with uppercase letters. Use them with ` Then use the github cli tool to create and sync the repository
Using bootstrap
I want to use the cdn for bootstrap so I put the app
part in nuxt.config.ts
Vue
vue is a javascript framework for building mostly single page apps (SPAs). The whole page is downloaded with a basically empty index.html
file that then gets populated on the client with the vue.js
library. This is good for portals, webshops or applications that don't need to be searchable with search engines. The drawback is, everything gets downloaded at once, if it is not cached. Install and initialize with:
Component
A new component with css, javascript and html template
Api
The server/
directory is used to register APIs link
Links
Last updated