Adding New Widgets
Vuely provides you the ability to add new widgets in the template. Please check the detailed documentation to learn, how to add the new widgets in the template.
Adding a new widget:
Please follow the given steps to add a new widget in the template. We are taking an example of adding a ToDo list on the dashboard but you can add any widget on any of the other page in the template:
Open
src/views/dashboard/DashboardOne.vuefile.Copy
TodoList.vuewidget fromvuely/src/components/Widgets/ToDoList.vueThemeForest downloaded files and paste it under theyour-project-directory-name/src/components/Widgets/directory.Import TodoList widget into the
DashboardOne.vue. Example:<template> <v-container fluid px-4 py-0> <TodoList /> </v-container> </template> <script> import TodoList from "Components/Widgets/ToDoList"; export default { components: { TodoList } } </script>Save the file and open your browser you will see your dashboard is ready with the newly added widget i.e. a ToDo list in the given example.
Last updated