FarisPalayi / learning-VueJS

๐Ÿ’š A playground where I create stuff while learning Vue. Contains to-do app, blog, random list generator, etc.

Home Page:https://learning-vuejs-app.netlify.app/#/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

I'm learning VueJS. And as I learn new stuff, I'll add new things to this website๐ŸŽ‰

๐Ÿ”—Live site link

Component Template/Structure

// ComponentName.js
const options = {
  data() {
    return {
      // ...
    };
  },
  methods: {
    // ...
  },
  // ...
};

const ComponentName = {
  ...options,
  template: `<div>html goes here</div>`,
};

export default Vue.component("component-name", ComponentName); // Vue is loaded via `<script>` tag.
// main.js
import routes from "routes.js";
import ComponentName.js from "ComponentName.js"; // just import new components

const router = new VueRouter({ routes });

new Vue({ router }).$mount("#app");

About

๐Ÿ’š A playground where I create stuff while learning Vue. Contains to-do app, blog, random list generator, etc.

https://learning-vuejs-app.netlify.app/#/


Languages

Language:JavaScript 49.0%Language:CSS 32.5%Language:HTML 18.5%