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:
<template> <v-container fluid px-4 py-0> <TodoList /> </v-container> </template> <script> import TodoList from "Components/Widgets/ToDoList"; export default { components: { TodoList } } </script>
Last updated