📚 Reference
Root
├─ .eslintrc.cjs
├─ .gitignore
├─ .prettierrc
├─ cypress.config.ts
├─ env.d.ts
├─ index.html
├─ package-lock.json
├─ package.json
├─ README.md
├─ tsconfig.app.json
├─ tsconfig.config.json
├─ tsconfig.json
├─ tsconfig.vitest.json
├─ vite-vue.txt
├─ vite.config.ts
│
├─.husky
│ ├─ pre-commit
│ │
│ └─_
│ ├─ .gitignore
│ └─ husky.sh
│
├─.vscode
│ ├─ extensions.json
│ └─ settings.json
│
├─cypress
│ ├─e2e
│ │ ├─ example.cy.ts
│ │ └─ tsconfig.json
│ │
│ ├─fixtures
│ │ └─ example.json
│ │
│ └─support
│ ├─ commands.ts
│ └─ e2e.ts
│
├─node_modules
├─public
│ └─ favicon.ico
│
└─src
├─ App.vue
├─ main.ts
│
├─assets
│ ├─ base.css
│ ├─ logo.svg
│ └─ main.css
│
├─components
│ ├─ HelloWorld.vue
│ ├─ TheWelcome.vue
│ ├─ WelcomeItem.vue
│ │
│ ├─icons
│ │ ├─ IconCommunity.vue
│ │ ├─ IconDocumentation.vue
│ │ ├─ IconEcosystem.vue
│ │ ├─ IconSupport.vue
│ │ └─ IconTooling.vue
│ │
│ └─__tests__
│ └─ HelloWorld.spec.ts
│
├─router
│ └─ index.ts
│
├─stores
│ └─ counter.ts
│
└─views
├─ AboutView.vue
└─ HomeView.vue
node_modules
npm install
과정에서 구성public
import
하지 않고 그냥 URL 기반으로 사용하려는 경우src
import
해서 사용.eslintrc.cjs