This is my own vue framework to ease my development😊. You can try this, too!!! 💖
VSCode + Volar (and disable Vetur).
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 Volar to make the TypeScript language service aware of .vue
types.
See Vite Configuration Reference.
npm install
npm run dev
npm run build
Lint with ESLint
npm run lint
npm run create-component {component-name}
# OR
npm run create-component {directory/component-name}
npm run create-page {page-name}
# OR
npm run create-page {directory/page-name}
- Add the
upstream
remote: Go to the root of the user's project directory (the one where Vuxt is integrated).
git remote add upstream https://github.com/chrischase011/vuxt.git
- Verify the remotes: Check if the remotes were added successfully:
git remote -v
- Fetch the latest updates from the original
Vuxt
repository:
git fetch upstream
- Rebase the latest updates.
git rebase upstream/main