facebook twitter hatena line email

「Javascript/vue/vuepress」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(カスタム変数用意)
(カスタム変数用意)
行11: 行11:
 
const string = {
 
const string = {
 
     example: {
 
     example: {
         mail: "hoge@gmail.com"
+
         mail: "hoge@example.com"
 
     }
 
     }
 
}
 
}

2019年4月12日 (金) 13:22時点における版

vuepressとは

Markdownのドキュメントジェネレーター

サイトデザインなど変更

設定ファイル

.vuepress/config.js

カスタム変数用意

.vuepress/scripts/string.js

const string = {
    example: {
        mail: "hoge@example.com"
    }
}
export default {
    computed: {
        $string () {
            return string
        }
    }
}

.vuepress/enhanceApp.js

import strings from "./scripts/string"
export default ({
      Vue,
      options,
      router,
      siteData
}) => {
      Vue.mixin(strings);
}


example1.md

ver:{{$string.example.,mail}}'

参考

https://qiita.com/dojineko/items/aae7e6d13479e08d49fd