chore: update vscode extensions
This commit is contained in:
parent
c525b7cc1a
commit
784133cbe6
3
.vscode/extensions.json
vendored
3
.vscode/extensions.json
vendored
@ -2,7 +2,8 @@
|
|||||||
"recommendations": [
|
"recommendations": [
|
||||||
"octref.vetur",
|
"octref.vetur",
|
||||||
"antfu.i18n-ally",
|
"antfu.i18n-ally",
|
||||||
|
"antfu.iconify",
|
||||||
"dbaeumer.vscode-eslint",
|
"dbaeumer.vscode-eslint",
|
||||||
"bradlc.vscode-tailwindcss"
|
"bradlc.vscode-tailwindcss"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
13
README.md
13
README.md
@ -64,15 +64,24 @@
|
|||||||
|
|
||||||
### Dev tools
|
### Dev tools
|
||||||
|
|
||||||
- [Typescript](https://www.typescriptlang.org/)
|
- [TypeScript](https://www.typescriptlang.org/)
|
||||||
- [pnpm](https://pnpm.js.org/) - fast, disk space efficient package manager
|
- [pnpm](https://pnpm.js.org/) - fast, disk space efficient package manager
|
||||||
- [Netlify](https://www.netlify.com/) - deploy.
|
- [Netlify](https://www.netlify.com/) - deploy
|
||||||
- [VS Code Extensions](./.vscode/extensions.json)
|
- [VS Code Extensions](./.vscode/extensions.json)
|
||||||
|
- [Iconify IntelliSense](https://marketplace.visualstudio.com/items?itemName=antfu.iconify)
|
||||||
|
- [i18n Ally](https://marketplace.visualstudio.com/items?itemName=antfu.i18n-ally)
|
||||||
|
- [Tailwind CSS IntelliSense](https://marketplace.visualstudio.com/items?itemName=bradlc.vscode-tailwindcss)
|
||||||
|
- [Vetur](https://marketplace.visualstudio.com/items?itemName=octref.vetur)
|
||||||
|
- [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint)
|
||||||
|
|
||||||
## Try it now!
|
## Try it now!
|
||||||
|
|
||||||
|
### Github Template
|
||||||
|
|
||||||
[Create a repo from this template on Github](https://github.com/antfu/vitesse/generate).
|
[Create a repo from this template on Github](https://github.com/antfu/vitesse/generate).
|
||||||
|
|
||||||
|
### Clone to Local
|
||||||
|
|
||||||
Or if you prefers do to manually with cleaner git history
|
Or if you prefers do to manually with cleaner git history
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
@ -1,34 +1,15 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="text-xl mt-6">
|
<div class="text-xl mt-6">
|
||||||
<div
|
<div class="icon-btn mx-2" @click="isDark = !isDark">
|
||||||
class="icon-btn mx-2"
|
<Icon :icon="isDark ? 'carbon:moon' : 'carbon:sun'" class="inline-block" />
|
||||||
@click="isDark = !isDark"
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
class="inline-block"
|
|
||||||
:icon="isDark ? 'carbon:moon' : 'carbon:sun'"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div class="icon-btn mx-2" @click="toggleLocales">
|
||||||
class="icon-btn mx-2"
|
<Icon icon="carbon:language" class="inline-block" />
|
||||||
@click="toggleLocales"
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
class="inline-block"
|
|
||||||
icon="carbon:language"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<a
|
<a class="icon-btn mx-2" href="https://github.com/antfu/vitesse" target="_blank">
|
||||||
class="icon-btn mx-2"
|
<Icon icon="carbon:code" class="inline-block" />
|
||||||
href="https://github.com/antfu/vitesse"
|
|
||||||
target="_blank"
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
class="inline-block"
|
|
||||||
icon="carbon:code"
|
|
||||||
/>
|
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
Loading…
Reference in New Issue
Block a user