わいの日記

ありがちエンジニアブログ

2019-04-01から1ヶ月間の記事一覧

TypeScriptいろいろ(型、継承、Interface、Singleton)

整理整理 Interface 継承 interface IFather { fatherName: string // おとんの名前をstring型 } interface IMother { motherName: string // おかんの名前をstring型 } // IFatherとIMotherを継承するIChildrenを定義 interface IChildren extends IFather,…

( React + TypeScript)event.target.nameとevent.target.valueの型付け

ブログ移転しました exhikkii.com

Nuxt.js に pugを導入する

exhikkii.com へ移行

vue-i18n を TypeScript で静的型付けする

最近の気づきをメモがわりに。vue(正確にはNuxt.js) + TypeScriptのプロジェクトでvue-i18nを導入して国際化対応しました。vue-i18nのセットアップは公式をご参照ください。 https://kazupon.github.io/vue-i18n/ 内容は実際とは違いますが、 やろうとしたこ…