It's a vite's stater template prepared for those people who want to build up a web app quickly.
- ✨ Use the new
<script setup>
style. - 💨 WindiCSS, the next generation utility-first CSS framework.
- 😃 Components/icons/vue API auto-import features.
- 📖 Automatically routes generated.
- 🦾 TypeScript, of course!
You can create a repo from this template on GitHub.
Or use the git clone
command to download this template locally.
The template uses the icons from any icon sets 🔍Icônes, and the IconsResolver
is needed for matching the auto-import component's feature. In this template, we agree in advance that the prefix of icon components is 'i'
, of course you can modify it in the vite.config.ts
.
<template>
<!-- both PascalCase and dash-case are supported by Vue -->
<IMdiAlarm />
<i-fa-beer />
</template>
Thanks antfu's masterpieces which help me improve the development efficiency.