Main
Last updated
Was this helpful?
Last updated
Was this helpful?
package.json
summary:
Run the Website : npm run dev
Build for Production : npm run build
Run the Preview (not much used) : npm run preview
The goal of this new release is to keep the build time minimal and keep the project organized and easy to read. This piece of documentation will guide you through organizing the files and the project structure.
One file for each toolbox category
Name the file according to its category name
Blocks inside the file should be put in order of appearance in the toolbox
A comment must be put on top of each block definition
Always comment your development
Try to make one component for one functionality (example: NavBar.vue
only contains navbar code ; FNAF.vue
only contains the fnaf game)
This is a release.
No JavaScript
- *.js
file should populate it.
Custom blocks are using the
Vue components are created in the .
All the Global CSS styles or CSS classes used are in the directory
If a Vue component has too much styling you can create a CSS file for the component with the component's name inside the directory, then import it inside the component with @import './file_path'
()