├── .editorconfig ├── .gitignore ├── README.md ├── dist ├── index.html ├── main.js └── styles.css ├── package.json ├── src ├── Form │ ├── Form.html │ └── Form.ts ├── Home │ ├── Home.html │ └── Home.ts ├── Links │ ├── Links.html │ └── Links.ts ├── Settings │ ├── Settings.html │ └── Settings.ts ├── alert │ ├── alert.html │ └── alert.ts ├── index.html ├── index.ts ├── jumbotron │ ├── jumbotron.html │ └── jumbotron.ts ├── modal │ ├── modal.html │ └── modal.ts ├── navbar │ ├── navbar.html │ └── navbar.ts ├── router.ts ├── style.scss ├── template.d.ts ├── util.ts └── vuex │ ├── actions.ts │ ├── getters.ts │ ├── mutations.ts │ ├── state.ts │ ├── store.ts │ └── types.ts ├── template.html ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | indent_size = 2 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Vue.jsとTypeScriptのサンプル2 2 | ## License 3 | [MIT](http://opensource.org/licenses/mit-license.php) 4 | -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |