Skip to content

PhanDuyen1603/Ads-Management-FE

Repository files navigation

map advertise app

project structure

├── ... ├── src # source folder │ ├── components # vue component │ ├── composables # contain custom hook and api calling │ ├── constant # app constant │ ├── layouts # general layout and admin layout │ ├── middleware # middleware for admin page │ ├── pages # pages route │ ├── pllugins # global variables and third party plugin │ ├── stores # app states │ ├── utils # app helpers │ └── styles # global styles └── ...

Getting Started

# Install dependencies
$ yarn

# Run as development mode http://localhost:3030
$ yarn dev

# Build as production mode and launch server
$ yarn build
$ yarn start

Components

auto import by folder directory

Composable

Composable documentation

API

$apiFetch: using same with $fetch $fetch documentation

const { $apiFetch } = useNuxtApp()
const list = await $apiFetch(....)

Modal

const { $modal } = useNuxtApp()
const openModal = async () => {
  await $modal.show({
    component: [component name to show]
  })
}

toast

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published