vue-cli-plugin-vuesr v0.0.17

vuesr
This project originated from using @vue/cli starter template. Its goal is to give a starting point for web apps which requires a simple user/admin dashboard frontend. I made it mainly for myself since I don't want to start from scratch everytime. It will include a login/sign-up view, a mainmenu-sidebar, a topbar, content-containers and a modal system. It also includes vue-router and vuex for navigation and store management. The project also already includes bulma/buefy css framework but I did not include any samples on how one might use any of its ready to use components (like forms or lists). It's basically the skeleton for a user/admin dashboard. How you use it, how you plan to implement authentication, how you plan to implement a database or any API is up to you entirely. Have fun ❤.
If you don't know what Vue is, I suggest taking a quick look at its documentation. It's awesome and I love it !

Install template
Option 1 (recommended) : Install as preset along project creation
vue create --preset turbopasi/vue-cli-plugin-vuesr my-project-nameOption 2 : Install as plugin to an existing project
First, use vue-cli to create a new project, then add the vue-cli plugin "vuesr". This will setup a project structure with all necessary components.
You need vue-cli, install it, if you haven't yet
npm install -g @vue/cli
# OR
yarn global add @vue/cliThen create a new project with vue create. In the end just add the plugin with vue add vuesr. This should create the necessary components, project structure and install dependencies.
vue create my-project-name
cd my-project-name
vue add vuesrproject structure
coming soon