panoskouff / vue3-sortable-posts

A small page to practise vue 3

Home Page:https://vue3-sortable-posts.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SPA with vite

A sortable posts application with vue 3 and vite.

image

Table of Contents

Installation

To install all the required dependencies, run:

npm install

Development

To start the development server, run:

npm run dev

This will start the Vite development server. Navigate to http://localhost:5173/ to view the app.

Build

To create a production build, run:

npm run build

The build artifacts will be stored in the dist directory.

Testing

To run the tests, execute:

npm test

You can also type check the project with:

npm run typecheck

Project Structure

├── src/                  # Application source code
│   ├── atoms/            # Unopinionated UI components
│   ├── components/       # Opinionated UI components
│   ├── composables/      # Vue Composables
│   ├── queries/          # Query functions and adapters
│   ├── styles/           # Global styles and variables
│   ├── types/            # Type definitions
│   ├── utils/            # Utility functions
│   └── main.ts           # Entry point for the application
├── public/               # Public static assets
├── jest.config.js        # Jest configuration file
└── vite.config.ts        # Vite configuration file

About

A small page to practise vue 3

https://vue3-sortable-posts.vercel.app


Languages

Language:TypeScript 55.9%Language:Vue 34.6%Language:SCSS 6.2%Language:JavaScript 2.2%Language:HTML 1.1%