Skip to content

Latest commit

 

History

History
37 lines (34 loc) · 829 Bytes

README.md

File metadata and controls

37 lines (34 loc) · 829 Bytes

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");
    }
  }
});