/
githubmirror
/
ionic-framework
Обзор
Документация
Войти
/
githubmirror
/
ionic-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/vue/test/base/src/components/NavChild.vue
39 строк
726 B
Brandy Smith
test(vue): improve test app (#30610)
08 авг 2025, 20:37
Не верифицирован
08 авг 2025, 20:37
2229c24
Код
Авторство
О чём код?
<template> <ion-header> <ion-toolbar> <ion-buttons slot="start"> <ion-back-button></ion-back-button> </ion-buttons> <ion-title>Nav - Child</ion-title> </ion-toolbar> </ion-header> <ion-content class="ion-padding" id="nav-child-content"> {{ title }} </ion-content> </template> <script lang="ts"> import { IonButtons, IonBackButton, IonContent, IonHeader, IonTitle, IonToolbar } from '@ionic/vue'; import { defineComponent } from 'vue'; export default defineComponent({ props: { title: { type: String, default: 'Default Title' } }, components: { IonButtons, IonBackButton, IonContent, IonHeader, IonTitle, IonToolbar } }) </script>