├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── nuxt-demo ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── assets │ ├── custom-bootstrap.scss │ ├── error.svg │ ├── functions.js │ ├── ionicons.js │ ├── john-doe.jpeg │ ├── loading.svg │ ├── logo.svg │ └── variables.css ├── components │ ├── BootstrapAbout.vue │ ├── BootstrapContact.vue │ ├── BootstrapNav.vue │ ├── ChartBar.vue │ ├── ChartBarBase.js │ ├── ChartDoughnut.vue │ ├── ChartDoughnutBase.js │ ├── ChartLine.vue │ └── ChartLineBase.js ├── jsconfig.json ├── layouts │ └── default.vue ├── nuxt.config.js ├── package-lock.json ├── package.json ├── pages │ ├── aos.vue │ ├── bootstrap.vue │ ├── chart.vue │ ├── highlight.vue │ ├── index.vue │ ├── ionicons.vue │ ├── postcss.vue │ ├── vue-lazyload.vue │ ├── vuex-axios.vue │ └── vuex.vue ├── plugins │ ├── aos.client.js │ ├── highlight.js │ ├── ionicons.js │ └── vue-lazyload.js ├── static │ ├── _redirects │ ├── color-harmonies.png │ └── favicon.ico └── store │ ├── markdown.js │ └── wikipedia.js ├── package.json ├── src ├── .vuepress │ ├── components │ │ ├── PageTitle.vue │ │ └── ProjectList.vue │ ├── config.js │ ├── enhanceApp.js │ ├── public │ │ ├── _redirects │ │ ├── favicon.ico │ │ ├── hero.png │ │ └── logo.png │ ├── styles │ │ ├── index.styl │ │ └── palette.styl │ └── theme │ │ ├── components │ │ └── Page.vue │ │ └── index.js ├── data.js ├── img │ ├── amalia.png │ ├── azka.png │ ├── enlightenment.png │ ├── techiq.jpg │ ├── tiara.png │ └── tokodiba.png ├── index.md ├── nuxt │ ├── README.md │ ├── aos.md │ ├── bootstrap.md │ ├── chart.md │ ├── highlight.md │ ├── ionicons.md │ ├── postcss.md │ ├── vue-lazyload.md │ ├── vuex-axios.md │ └── vuex.md ├── portfolio.md └── vue │ ├── README.md │ ├── aos.md │ ├── bootstrap.md │ ├── chart.md │ ├── highlight.md │ ├── ionicons.md │ ├── postcss.md │ ├── vue-lazyload.md │ ├── vuex-axios.md │ └── vuex.md ├── vue-demo ├── .browserslistrc ├── .eslintrc.js ├── .gitignore ├── README.md ├── babel.config.js ├── jsconfig.json ├── lint-staged.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── _redirects │ ├── color-harmonies.png │ ├── favicon.ico │ └── index.html └── src │ ├── App.vue │ ├── assets │ ├── custom-bootstrap.scss │ ├── ionicons.js │ ├── john-doe.jpeg │ ├── logo.svg │ └── variables.css │ ├── components │ ├── BootstrapAbout.vue │ ├── BootstrapContact.vue │ └── BootstrapNav.vue │ ├── main.js │ ├── router │ └── index.js │ ├── store │ ├── index.js │ ├── markdown.js │ └── wikipedia.js │ └── views │ ├── aos.vue │ ├── bootstrap.vue │ ├── index.vue │ ├── ionicons.vue │ ├── postcss.vue │ ├── vuex-axios.vue │ └── vuex.vue └── vue2-demo ├── .browserslistrc ├── .eslintrc.js ├── .gitignore ├── README.md ├── babel.config.js ├── jsconfig.json ├── lint-staged.config.js ├── package-lock.json ├── package.json ├── public ├── _redirects ├── favicon.ico └── index.html └── src ├── App.vue ├── assets ├── custom-bootstrap.scss ├── error.svg ├── john-doe.jpeg ├── loading.svg ├── logo.png └── logo.svg ├── components ├── BootstrapAbout.vue ├── BootstrapContact.vue ├── BootstrapNav.vue ├── ChartBar.vue ├── ChartBarBase.js ├── ChartDoughnut.vue ├── ChartDoughnutBase.js ├── ChartLine.vue └── ChartLineBase.js ├── main.js ├── router └── index.js └── views ├── bootstrap.vue ├── chart.vue ├── highlight.vue ├── index.vue └── vue-lazyload.vue /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "none" 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/README.md -------------------------------------------------------------------------------- /nuxt-demo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/.editorconfig -------------------------------------------------------------------------------- /nuxt-demo/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/.eslintrc.js -------------------------------------------------------------------------------- /nuxt-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/.gitignore -------------------------------------------------------------------------------- /nuxt-demo/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "none" 3 | } 4 | -------------------------------------------------------------------------------- /nuxt-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/README.md -------------------------------------------------------------------------------- /nuxt-demo/assets/custom-bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/assets/custom-bootstrap.scss -------------------------------------------------------------------------------- /nuxt-demo/assets/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/assets/error.svg -------------------------------------------------------------------------------- /nuxt-demo/assets/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/assets/functions.js -------------------------------------------------------------------------------- /nuxt-demo/assets/ionicons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/assets/ionicons.js -------------------------------------------------------------------------------- /nuxt-demo/assets/john-doe.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/assets/john-doe.jpeg -------------------------------------------------------------------------------- /nuxt-demo/assets/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/assets/loading.svg -------------------------------------------------------------------------------- /nuxt-demo/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/assets/logo.svg -------------------------------------------------------------------------------- /nuxt-demo/assets/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/assets/variables.css -------------------------------------------------------------------------------- /nuxt-demo/components/BootstrapAbout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/components/BootstrapAbout.vue -------------------------------------------------------------------------------- /nuxt-demo/components/BootstrapContact.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/components/BootstrapContact.vue -------------------------------------------------------------------------------- /nuxt-demo/components/BootstrapNav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/components/BootstrapNav.vue -------------------------------------------------------------------------------- /nuxt-demo/components/ChartBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/components/ChartBar.vue -------------------------------------------------------------------------------- /nuxt-demo/components/ChartBarBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/components/ChartBarBase.js -------------------------------------------------------------------------------- /nuxt-demo/components/ChartDoughnut.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/components/ChartDoughnut.vue -------------------------------------------------------------------------------- /nuxt-demo/components/ChartDoughnutBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/components/ChartDoughnutBase.js -------------------------------------------------------------------------------- /nuxt-demo/components/ChartLine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/components/ChartLine.vue -------------------------------------------------------------------------------- /nuxt-demo/components/ChartLineBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/components/ChartLineBase.js -------------------------------------------------------------------------------- /nuxt-demo/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/jsconfig.json -------------------------------------------------------------------------------- /nuxt-demo/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/layouts/default.vue -------------------------------------------------------------------------------- /nuxt-demo/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/nuxt.config.js -------------------------------------------------------------------------------- /nuxt-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/package-lock.json -------------------------------------------------------------------------------- /nuxt-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/package.json -------------------------------------------------------------------------------- /nuxt-demo/pages/aos.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/pages/aos.vue -------------------------------------------------------------------------------- /nuxt-demo/pages/bootstrap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/pages/bootstrap.vue -------------------------------------------------------------------------------- /nuxt-demo/pages/chart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/pages/chart.vue -------------------------------------------------------------------------------- /nuxt-demo/pages/highlight.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/pages/highlight.vue -------------------------------------------------------------------------------- /nuxt-demo/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/pages/index.vue -------------------------------------------------------------------------------- /nuxt-demo/pages/ionicons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/pages/ionicons.vue -------------------------------------------------------------------------------- /nuxt-demo/pages/postcss.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/pages/postcss.vue -------------------------------------------------------------------------------- /nuxt-demo/pages/vue-lazyload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/pages/vue-lazyload.vue -------------------------------------------------------------------------------- /nuxt-demo/pages/vuex-axios.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/pages/vuex-axios.vue -------------------------------------------------------------------------------- /nuxt-demo/pages/vuex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/pages/vuex.vue -------------------------------------------------------------------------------- /nuxt-demo/plugins/aos.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/plugins/aos.client.js -------------------------------------------------------------------------------- /nuxt-demo/plugins/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/plugins/highlight.js -------------------------------------------------------------------------------- /nuxt-demo/plugins/ionicons.js: -------------------------------------------------------------------------------- 1 | import Vue from "vue"; 2 | 3 | Vue.config.ignoredElements = [/^ion-/]; 4 | -------------------------------------------------------------------------------- /nuxt-demo/plugins/vue-lazyload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/plugins/vue-lazyload.js -------------------------------------------------------------------------------- /nuxt-demo/static/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/static/_redirects -------------------------------------------------------------------------------- /nuxt-demo/static/color-harmonies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/static/color-harmonies.png -------------------------------------------------------------------------------- /nuxt-demo/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/static/favicon.ico -------------------------------------------------------------------------------- /nuxt-demo/store/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/store/markdown.js -------------------------------------------------------------------------------- /nuxt-demo/store/wikipedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/nuxt-demo/store/wikipedia.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/package.json -------------------------------------------------------------------------------- /src/.vuepress/components/PageTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/.vuepress/components/PageTitle.vue -------------------------------------------------------------------------------- /src/.vuepress/components/ProjectList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/.vuepress/components/ProjectList.vue -------------------------------------------------------------------------------- /src/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/.vuepress/config.js -------------------------------------------------------------------------------- /src/.vuepress/enhanceApp.js: -------------------------------------------------------------------------------- 1 | export default ({ Vue, options, router, siteData }) => {}; 2 | -------------------------------------------------------------------------------- /src/.vuepress/public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/.vuepress/public/_redirects -------------------------------------------------------------------------------- /src/.vuepress/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/.vuepress/public/favicon.ico -------------------------------------------------------------------------------- /src/.vuepress/public/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/.vuepress/public/hero.png -------------------------------------------------------------------------------- /src/.vuepress/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/.vuepress/public/logo.png -------------------------------------------------------------------------------- /src/.vuepress/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/.vuepress/styles/index.styl -------------------------------------------------------------------------------- /src/.vuepress/styles/palette.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/.vuepress/styles/palette.styl -------------------------------------------------------------------------------- /src/.vuepress/theme/components/Page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/.vuepress/theme/components/Page.vue -------------------------------------------------------------------------------- /src/.vuepress/theme/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extend: "@vuepress/theme-default" 3 | }; 4 | -------------------------------------------------------------------------------- /src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/data.js -------------------------------------------------------------------------------- /src/img/amalia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/img/amalia.png -------------------------------------------------------------------------------- /src/img/azka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/img/azka.png -------------------------------------------------------------------------------- /src/img/enlightenment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/img/enlightenment.png -------------------------------------------------------------------------------- /src/img/techiq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/img/techiq.jpg -------------------------------------------------------------------------------- /src/img/tiara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/img/tiara.png -------------------------------------------------------------------------------- /src/img/tokodiba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/img/tokodiba.png -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/index.md -------------------------------------------------------------------------------- /src/nuxt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/nuxt/README.md -------------------------------------------------------------------------------- /src/nuxt/aos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/nuxt/aos.md -------------------------------------------------------------------------------- /src/nuxt/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/nuxt/bootstrap.md -------------------------------------------------------------------------------- /src/nuxt/chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/nuxt/chart.md -------------------------------------------------------------------------------- /src/nuxt/highlight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/nuxt/highlight.md -------------------------------------------------------------------------------- /src/nuxt/ionicons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/nuxt/ionicons.md -------------------------------------------------------------------------------- /src/nuxt/postcss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/nuxt/postcss.md -------------------------------------------------------------------------------- /src/nuxt/vue-lazyload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/nuxt/vue-lazyload.md -------------------------------------------------------------------------------- /src/nuxt/vuex-axios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/nuxt/vuex-axios.md -------------------------------------------------------------------------------- /src/nuxt/vuex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/nuxt/vuex.md -------------------------------------------------------------------------------- /src/portfolio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/portfolio.md -------------------------------------------------------------------------------- /src/vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/vue/README.md -------------------------------------------------------------------------------- /src/vue/aos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/vue/aos.md -------------------------------------------------------------------------------- /src/vue/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/vue/bootstrap.md -------------------------------------------------------------------------------- /src/vue/chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/vue/chart.md -------------------------------------------------------------------------------- /src/vue/highlight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/vue/highlight.md -------------------------------------------------------------------------------- /src/vue/ionicons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/vue/ionicons.md -------------------------------------------------------------------------------- /src/vue/postcss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/vue/postcss.md -------------------------------------------------------------------------------- /src/vue/vue-lazyload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/vue/vue-lazyload.md -------------------------------------------------------------------------------- /src/vue/vuex-axios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/vue/vuex-axios.md -------------------------------------------------------------------------------- /src/vue/vuex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/src/vue/vuex.md -------------------------------------------------------------------------------- /vue-demo/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/.browserslistrc -------------------------------------------------------------------------------- /vue-demo/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/.eslintrc.js -------------------------------------------------------------------------------- /vue-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/.gitignore -------------------------------------------------------------------------------- /vue-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/README.md -------------------------------------------------------------------------------- /vue-demo/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/babel.config.js -------------------------------------------------------------------------------- /vue-demo/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/jsconfig.json -------------------------------------------------------------------------------- /vue-demo/lint-staged.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "*.{js,jsx,vue}": "vue-cli-service lint" 3 | }; 4 | -------------------------------------------------------------------------------- /vue-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/package-lock.json -------------------------------------------------------------------------------- /vue-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/package.json -------------------------------------------------------------------------------- /vue-demo/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/postcss.config.js -------------------------------------------------------------------------------- /vue-demo/public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/public/_redirects -------------------------------------------------------------------------------- /vue-demo/public/color-harmonies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/public/color-harmonies.png -------------------------------------------------------------------------------- /vue-demo/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/public/favicon.ico -------------------------------------------------------------------------------- /vue-demo/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/public/index.html -------------------------------------------------------------------------------- /vue-demo/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/App.vue -------------------------------------------------------------------------------- /vue-demo/src/assets/custom-bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/assets/custom-bootstrap.scss -------------------------------------------------------------------------------- /vue-demo/src/assets/ionicons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/assets/ionicons.js -------------------------------------------------------------------------------- /vue-demo/src/assets/john-doe.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/assets/john-doe.jpeg -------------------------------------------------------------------------------- /vue-demo/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/assets/logo.svg -------------------------------------------------------------------------------- /vue-demo/src/assets/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/assets/variables.css -------------------------------------------------------------------------------- /vue-demo/src/components/BootstrapAbout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/components/BootstrapAbout.vue -------------------------------------------------------------------------------- /vue-demo/src/components/BootstrapContact.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/components/BootstrapContact.vue -------------------------------------------------------------------------------- /vue-demo/src/components/BootstrapNav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/components/BootstrapNav.vue -------------------------------------------------------------------------------- /vue-demo/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/main.js -------------------------------------------------------------------------------- /vue-demo/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/router/index.js -------------------------------------------------------------------------------- /vue-demo/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/store/index.js -------------------------------------------------------------------------------- /vue-demo/src/store/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/store/markdown.js -------------------------------------------------------------------------------- /vue-demo/src/store/wikipedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/store/wikipedia.js -------------------------------------------------------------------------------- /vue-demo/src/views/aos.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/views/aos.vue -------------------------------------------------------------------------------- /vue-demo/src/views/bootstrap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/views/bootstrap.vue -------------------------------------------------------------------------------- /vue-demo/src/views/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/views/index.vue -------------------------------------------------------------------------------- /vue-demo/src/views/ionicons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/views/ionicons.vue -------------------------------------------------------------------------------- /vue-demo/src/views/postcss.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/views/postcss.vue -------------------------------------------------------------------------------- /vue-demo/src/views/vuex-axios.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/views/vuex-axios.vue -------------------------------------------------------------------------------- /vue-demo/src/views/vuex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue-demo/src/views/vuex.vue -------------------------------------------------------------------------------- /vue2-demo/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/.browserslistrc -------------------------------------------------------------------------------- /vue2-demo/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/.eslintrc.js -------------------------------------------------------------------------------- /vue2-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/.gitignore -------------------------------------------------------------------------------- /vue2-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/README.md -------------------------------------------------------------------------------- /vue2-demo/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/babel.config.js -------------------------------------------------------------------------------- /vue2-demo/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/jsconfig.json -------------------------------------------------------------------------------- /vue2-demo/lint-staged.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "*.{js,jsx,vue}": "vue-cli-service lint" 3 | }; 4 | -------------------------------------------------------------------------------- /vue2-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/package-lock.json -------------------------------------------------------------------------------- /vue2-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/package.json -------------------------------------------------------------------------------- /vue2-demo/public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/public/_redirects -------------------------------------------------------------------------------- /vue2-demo/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/public/favicon.ico -------------------------------------------------------------------------------- /vue2-demo/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/public/index.html -------------------------------------------------------------------------------- /vue2-demo/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/App.vue -------------------------------------------------------------------------------- /vue2-demo/src/assets/custom-bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/assets/custom-bootstrap.scss -------------------------------------------------------------------------------- /vue2-demo/src/assets/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/assets/error.svg -------------------------------------------------------------------------------- /vue2-demo/src/assets/john-doe.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/assets/john-doe.jpeg -------------------------------------------------------------------------------- /vue2-demo/src/assets/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/assets/loading.svg -------------------------------------------------------------------------------- /vue2-demo/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/assets/logo.png -------------------------------------------------------------------------------- /vue2-demo/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/assets/logo.svg -------------------------------------------------------------------------------- /vue2-demo/src/components/BootstrapAbout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/components/BootstrapAbout.vue -------------------------------------------------------------------------------- /vue2-demo/src/components/BootstrapContact.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/components/BootstrapContact.vue -------------------------------------------------------------------------------- /vue2-demo/src/components/BootstrapNav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/components/BootstrapNav.vue -------------------------------------------------------------------------------- /vue2-demo/src/components/ChartBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/components/ChartBar.vue -------------------------------------------------------------------------------- /vue2-demo/src/components/ChartBarBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/components/ChartBarBase.js -------------------------------------------------------------------------------- /vue2-demo/src/components/ChartDoughnut.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/components/ChartDoughnut.vue -------------------------------------------------------------------------------- /vue2-demo/src/components/ChartDoughnutBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/components/ChartDoughnutBase.js -------------------------------------------------------------------------------- /vue2-demo/src/components/ChartLine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/components/ChartLine.vue -------------------------------------------------------------------------------- /vue2-demo/src/components/ChartLineBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/components/ChartLineBase.js -------------------------------------------------------------------------------- /vue2-demo/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/main.js -------------------------------------------------------------------------------- /vue2-demo/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/router/index.js -------------------------------------------------------------------------------- /vue2-demo/src/views/bootstrap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/views/bootstrap.vue -------------------------------------------------------------------------------- /vue2-demo/src/views/chart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/views/chart.vue -------------------------------------------------------------------------------- /vue2-demo/src/views/highlight.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/views/highlight.vue -------------------------------------------------------------------------------- /vue2-demo/src/views/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/views/index.vue -------------------------------------------------------------------------------- /vue2-demo/src/views/vue-lazyload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasminzy/website/HEAD/vue2-demo/src/views/vue-lazyload.vue --------------------------------------------------------------------------------