You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
2.0 KiB

2 years ago
  1. # webdev
  2. This template should help get you started developing with Vue 3 in Vite.
  3. ## Recommended IDE Setup
  4. [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
  5. ## Type Support for `.vue` Imports in TS
  6. TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
  7. If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
  8. 1. Disable the built-in TypeScript Extension
  9. 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette
  10. 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
  11. 2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
  12. ## Customize configuration
  13. See [Vite Configuration Reference](https://vitejs.dev/config/).
  14. ## Project Setup
  15. ```sh
  16. npm install
  17. ```
  18. ### Compile and Hot-Reload for Development
  19. ```sh
  20. npm run dev
  21. ```
  22. ### Type-Check, Compile and Minify for Production
  23. ```sh
  24. npm run build
  25. ```
  26. ### Lint with [ESLint](https://eslint.org/)
  27. ```sh
  28. npm run lint
  29. ```
  30. WEB Development
  31. ===============
  32. See: https://blog.ninja-squad.com/2022/02/23/getting-started-with-vite-and-vue/
  33. install on Debian 11 Bullseye
  34. ------------------------------
  35. * curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
  36. * sudo apt-get install -y nodejs
  37. * node --version # v18.9.1
  38. * npm --version # 7.6.0
  39. * npm init vue@3