現在、nuxt.jsで静的ウェブサイト構築をしております。
jsonファイルに、各ページのタイトル、description情報を一括管理をしたいと思っております。
ファイル構成:
assets/json/meta.json (jsonファイル)
store/index.js(ストアでjsonファイルをインポート)
pages/index.vue(ページスラッグをストアのmutationに登録したfunctionに送り、jsonのページ情報を取得し、head()に登録)
問題:
ページ数は30~40ページくらいになり、もし変更があったら全ページ変更しなければいけない可能性がある。
index.vueの、
0. created()
0. methods
0. head()
の記述がちょっとボリュームがあるので、
一つのファイルで一元管理したい。
assets/json/meta.json
json
1{ 2 "home": { 3 "title": "HOME", 4 "description": "This is home description." 5 }, 6 "about": { 7 "title": "ABOUT", 8 "description": "This is about description." 9 }, 10 "about/company": { 11 "title": "COMPANY", 12 "description": "This is company description." 13 } 14}
store/index.js
javascript
1// Import Json 2import metaJson from "~/assets/json/meta.json" 3 4// State 5export const state = () => ({ 6 meta: metaJson 7}) 8// Mutations 9export const mutations = { 10 fetchMeta(state, pageSlug) { 11 state.pageMeta = state.meta[pageSlug] 12 } 13} 14 15// Getters 16export const getters = { 17 getAll(state) { 18 return state.meta 19 } 20} 21
pages/index.vue
vue
1<template lang="pug"> 2 div 3 p Home 4</template> 5 6<script> 7export default { 8 data() { 9 return { 10 name: "home" 11 } 12 }, 13 14 created() { 15 this.fetchMeta(this.name) 16 }, 17 methods: { 18 fetchMeta(pageName) { 19 this.$store.commit("fetchMeta", pageName) 20 } 21 }, 22 head() { 23 return { 24 title: this.$store.state.pageMeta.title, 25 meta: [ 26 { 27 hid: "description", 28 name: "description", 29 content: this.$store.state.pageMeta.description 30 }, 31 { 32 hid: "og:title", 33 name: "og:title", 34 content: this.$store.state.pageMeta.title 35 }, 36 { 37 hid: "og:decription", 38 name: "og:decription", 39 content: this.$store.state.pageMeta.description 40 } 41 ] 42 } 43 } 44} 45</script> 46
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/16 19:18