├── .github └── workflows │ ├── build.yml │ └── check_pr.yml ├── .gitignore ├── .vuepress └── theme │ ├── AlgoliaSearchBox.vue │ ├── DropdownLink.vue │ ├── DropdownTransition.vue │ ├── Home.vue │ ├── Layout.vue │ ├── NavLink.vue │ ├── NavLinks.vue │ ├── Navbar.vue │ ├── NotFound.vue │ ├── OutboundLink.vue │ ├── Page.vue │ ├── SearchBox.vue │ ├── Sidebar.vue │ ├── SidebarButton.vue │ ├── SidebarGroup.vue │ ├── SidebarLink.vue │ ├── search.svg │ ├── styles │ ├── arrow.styl │ ├── code.styl │ ├── config.styl │ ├── custom-blocks.styl │ ├── mobile.styl │ ├── nprogress.styl │ └── theme.styl │ └── util.js ├── CNAME ├── docs ├── .vuepress │ ├── components │ │ └── Video.vue │ ├── config.js │ └── public │ │ └── hero.png ├── README.md ├── google22166d928f328b02.html ├── meetup │ └── README.md └── video-tutorial │ ├── IVbFgnqrrBA.md │ ├── MY8PaOlylrQ.md │ ├── Qp9fjID-NJg.md │ ├── README.md │ ├── UwMEsbVNiI0.md │ ├── bx0eAttQuLA.md │ ├── q1dKK7euDak.md │ └── vd8KyEMBt98.md ├── package.json └── yarn.lock /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.github/workflows/check_pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | # /docs/.vuepress/dist 3 | -------------------------------------------------------------------------------- /.vuepress/theme/AlgoliaSearchBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/AlgoliaSearchBox.vue -------------------------------------------------------------------------------- /.vuepress/theme/DropdownLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/DropdownLink.vue -------------------------------------------------------------------------------- /.vuepress/theme/DropdownTransition.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/DropdownTransition.vue -------------------------------------------------------------------------------- /.vuepress/theme/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/Home.vue -------------------------------------------------------------------------------- /.vuepress/theme/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/Layout.vue -------------------------------------------------------------------------------- /.vuepress/theme/NavLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/NavLink.vue -------------------------------------------------------------------------------- /.vuepress/theme/NavLinks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/NavLinks.vue -------------------------------------------------------------------------------- /.vuepress/theme/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/Navbar.vue -------------------------------------------------------------------------------- /.vuepress/theme/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/NotFound.vue -------------------------------------------------------------------------------- /.vuepress/theme/OutboundLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/OutboundLink.vue -------------------------------------------------------------------------------- /.vuepress/theme/Page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/Page.vue -------------------------------------------------------------------------------- /.vuepress/theme/SearchBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/SearchBox.vue -------------------------------------------------------------------------------- /.vuepress/theme/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/Sidebar.vue -------------------------------------------------------------------------------- /.vuepress/theme/SidebarButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/SidebarButton.vue -------------------------------------------------------------------------------- /.vuepress/theme/SidebarGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/SidebarGroup.vue -------------------------------------------------------------------------------- /.vuepress/theme/SidebarLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/SidebarLink.vue -------------------------------------------------------------------------------- /.vuepress/theme/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/search.svg -------------------------------------------------------------------------------- /.vuepress/theme/styles/arrow.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/styles/arrow.styl -------------------------------------------------------------------------------- /.vuepress/theme/styles/code.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/styles/code.styl -------------------------------------------------------------------------------- /.vuepress/theme/styles/config.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/styles/config.styl -------------------------------------------------------------------------------- /.vuepress/theme/styles/custom-blocks.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/styles/custom-blocks.styl -------------------------------------------------------------------------------- /.vuepress/theme/styles/mobile.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/styles/mobile.styl -------------------------------------------------------------------------------- /.vuepress/theme/styles/nprogress.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/styles/nprogress.styl -------------------------------------------------------------------------------- /.vuepress/theme/styles/theme.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/styles/theme.styl -------------------------------------------------------------------------------- /.vuepress/theme/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/.vuepress/theme/util.js -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | vuejs.id 2 | -------------------------------------------------------------------------------- /docs/.vuepress/components/Video.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/docs/.vuepress/components/Video.vue -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/.vuepress/public/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/docs/.vuepress/public/hero.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/google22166d928f328b02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/docs/google22166d928f328b02.html -------------------------------------------------------------------------------- /docs/meetup/README.md: -------------------------------------------------------------------------------- 1 | # Meetup 2 | 3 | ... 4 | -------------------------------------------------------------------------------- /docs/video-tutorial/IVbFgnqrrBA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/docs/video-tutorial/IVbFgnqrrBA.md -------------------------------------------------------------------------------- /docs/video-tutorial/MY8PaOlylrQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/docs/video-tutorial/MY8PaOlylrQ.md -------------------------------------------------------------------------------- /docs/video-tutorial/Qp9fjID-NJg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/docs/video-tutorial/Qp9fjID-NJg.md -------------------------------------------------------------------------------- /docs/video-tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/docs/video-tutorial/README.md -------------------------------------------------------------------------------- /docs/video-tutorial/UwMEsbVNiI0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/docs/video-tutorial/UwMEsbVNiI0.md -------------------------------------------------------------------------------- /docs/video-tutorial/bx0eAttQuLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/docs/video-tutorial/bx0eAttQuLA.md -------------------------------------------------------------------------------- /docs/video-tutorial/q1dKK7euDak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/docs/video-tutorial/q1dKK7euDak.md -------------------------------------------------------------------------------- /docs/video-tutorial/vd8KyEMBt98.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/docs/video-tutorial/vd8KyEMBt98.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-id/homepage/HEAD/yarn.lock --------------------------------------------------------------------------------