Introduction to the Nuxt directory structure

# Nuxt directory structure

Attributes meaning
.nuxt Nuxt automatically generated, temporary files for editing, build
assets Used to organize uncompiled static resources such as LESS, SASS or JavaScript
components Vue components written for yourself, such as fluctuation components, calendar components, paging components
layouts Layout directory, used to organize the layout components of the application, can not be changed
middleware Used to store middleware
pages Used to store written pages, our main work area
plugins Where to store JavaScript plugins
static Used to store static resource files, such as pictures
store Vuex state management for organizing applications
.editorconfig Development tool format configuration
.gitignore Configure files that git does not upload
nuxt.config.json Personalized configuration for organizing Nuxt.js applications, the default configuration has been overridden
package.json npm package management configuration file
package-lock.json npm is automatically generated to help the unified setting of the package, yarn also has the same operation


Reprinted from: https://blog.csdn.net/zjsfdx/article/details/81978859

Published 33 original articles · praised 0 · visits 509

Guess you like

Origin blog.csdn.net/weixin_42863549/article/details/104609072