dheimoz / ionic-vue-starter-no-ts

VueJS Starter Template for Ionic framework with NO typescript. Seen folks complaining that they are not ready for typescript yet, So I put this simple template together with routing, alert, modal, and toast UI components

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ionic-starter-no-ts

Includes

  • Using a Modal
  • Using a Toast
  • Page Navigation
  • Detail Page Navigation
  • Using IonIcons
  • Structuring Vue SFC the v2 way
export default defineComponent({
  name: "Home",
  components: {
    IonContent,
    IonHeader,
    IonPage,
    IonTitle,
    IonToolbar
  },
  data() {
    return {
      addCircleOutline
    };
  },
  methods: {
    goDetailPage() {
      this.$router.push("/detail");
    }
  }
});

About

VueJS Starter Template for Ionic framework with NO typescript. Seen folks complaining that they are not ready for typescript yet, So I put this simple template together with routing, alert, modal, and toast UI components


Languages

Language:CSS 37.7%Language:Vue 29.6%Language:JavaScript 26.2%Language:HTML 4.8%Language:TypeScript 1.8%