- Check out my YouTube channel with great Ionic Framework Content
- Follow Me On Twitter
- Read my technical content on dev.to
- Join The Newsletter for content updates and information on upcoming courses
- 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"); } } });