diff --git a/src/App.vue b/src/App.vue index bafd5f5..02a9b26 100644 --- a/src/App.vue +++ b/src/App.vue @@ -40,7 +40,11 @@ export default { // if no subcomponents specify a metaInfo.title, this title will be used title: 'Home', // all titles will be injected into this template - titleTemplate: '%s | Guides de Paris' + titleTemplate: '%s | Guides de Paris', + meta: [ + { charset: 'utf-8' }, + { name: 'viewport', content: 'width=device-width, initial-scale=1' } + ] }, components: { HeaderMenu, diff --git a/src/components/Content/EdText.vue b/src/components/Content/EdText.vue index 7346102..2545d03 100644 --- a/src/components/Content/EdText.vue +++ b/src/components/Content/EdText.vue @@ -26,7 +26,7 @@ export default { }, methods: { buildTemplate () { - console.log('EdText buildTemplate: tei', this.tei) + // console.log('EdText buildTemplate: tei', this.tei) // to get Vue.compile working we have to use the full build of vuejs // https://vuejs.org/v2/guide/installation.html#Explanation-of-Different-Builds // in /build/webpack.config.base.js alias -> 'vue': 'vue/dist/vue.js', @@ -43,7 +43,7 @@ export default { }, parseLinks () { let links = this.html.match(//g) - console.log('links', links) + // console.log('links', links) if (links) { // let domparser = new DOMParser() // let domlink diff --git a/src/pages/Bibliographie.vue b/src/pages/Bibliographie.vue index 36817fa..5f2be3c 100644 --- a/src/pages/Bibliographie.vue +++ b/src/pages/Bibliographie.vue @@ -13,6 +13,9 @@ import { REST } from 'api/rest-axios' export default { name: 'Bibliographie', + metaInfo: { + title: 'Bibliographie' + }, data: () => ({ }), diff --git a/src/pages/Edition.vue b/src/pages/Edition.vue index 2e4ffae..ab837f7 100644 --- a/src/pages/Edition.vue +++ b/src/pages/Edition.vue @@ -3,13 +3,14 @@ -