├── .browserslistrc ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── babel.config.js ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── assets │ └── logo.png ├── components │ ├── HelloWorld.vue │ └── sidebar │ │ ├── Sidebar.vue │ │ ├── SidebarLink.vue │ │ └── state.js ├── main.js ├── router │ └── index.js └── views │ ├── About.vue │ ├── Dashboard.vue │ └── Home.vue └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/components/sidebar/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/src/components/sidebar/Sidebar.vue -------------------------------------------------------------------------------- /src/components/sidebar/SidebarLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/src/components/sidebar/SidebarLink.vue -------------------------------------------------------------------------------- /src/components/sidebar/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/src/components/sidebar/state.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/src/views/About.vue -------------------------------------------------------------------------------- /src/views/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/src/views/Dashboard.vue -------------------------------------------------------------------------------- /src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/src/views/Home.vue -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithjustin/vue3-sidebar/HEAD/yarn.lock --------------------------------------------------------------------------------