Vue初心者です。
Monaca OnsenUi Vueでハイブリッドアプリを構築中です。
AngularJsが非推奨となる為、onsen ui Vue tabbar で
[ Onsen UI for Vueの使いこなしテクを一挙公開!Vue.jsのコンポーネント間通信に関するあれこれ ]
参考に作成しております。
前提・実現したいこと
リストページで取得したデータを遷移先詳細ページで表示したい
発生している問題・エラーメッセージ
リストページでaxiosで取得したデータを遷移先ページで表示したいのですがうまく表示出来ません。
該当のソースコード
<< リストページ >>
<template> <v-ons-page> <v-ons-list></v-ons-page> </template> <script> import Vue from 'vue' import axios from 'axios' import moment from 'moment' import 詳細ページ from '詳細ページ' <-- 詳細ページ export default { key: 'リストページ', methods: { pushPage(e) { this.$emit('push-page', { page: ccDetail, extends: ccDetail, }); } }, created() { axios.get('url') <-- Jsonデータ取得 .then(response => {this.results = response.data}) .catch(err => { console.log('err:', err); }); }, filters: { moment: function (date) { return moment(date).format('MM.DD - HH:mm'); } }, data: function() { return { results: [], } }, } </script><v-ons-list-item v-for="result in results" :key="result.id" modifier="chevron" @click="pushPage" :title="result.title"> <div> {{ result.start | moment }} {{ result.store }} {{ result.title }} </div> </v-ons-list-item> </v-ons-list>
<<詳細ページ>>
<template>
<v-ons-page>
<v-ons-toolbar>
<div class="center header-title">詳細ページ</div>
</v-ons-toolbar>
<p>{{ title }}</p>
</v-ons-page>
</template>
試したこと
propsで受渡ししてみたのですがうまくいきません。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー