hasura-rest-hands-on/docs/create-vue-app.md

19 lines
1.2 KiB
Markdown
Raw Normal View History

2021-07-16 22:11:10 +09:00
# Vueアプリケーションの作成
2022-02-28 14:50:13 +09:00
[![Edit on StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/kou029w/hasura-rest-hands-on/tree/main/frontend?terminal=dev&file=src/App.vue)
2021-07-27 11:03:36 +09:00
[![Edit on CodeSandbox](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/github/kou029w/hasura-rest-hands-on/tree/main/frontend?file=/src/App.vue)
2021-07-20 21:06:36 +09:00
2022-02-28 14:50:13 +09:00
いずれかのリンクにアクセスし、Vueアプリケーションを作成します。
2021-07-20 21:06:36 +09:00
なお、URLに含まれる `memo-demo` は、Hasura Cloudプロジェクト名によって異なるので、適宜自分の作成したプロジェクトに合わせて読み替えてください。
2021-07-16 22:11:10 +09:00
2021-07-25 11:34:58 +09:00
```vue
{{#include ../frontend/src/App.vue}}
```
2021-07-16 22:11:10 +09:00
2022-02-27 19:18:19 +09:00
Hasuraのコンソールにアクセスすると、実際にデータが更新されていることを確認できます。
2021-07-20 21:06:36 +09:00
2021-07-16 22:11:10 +09:00
![](https://lh3.googleusercontent.com/twteosRUkmMlBoa8PXU3UXC9umek-TzQ1kwOWZIShW7fKvW_4tVtG7B3Ue-olldhxh05x1JTFtt_Oxn2nLxcDPEGBv32bkE2zjpqL7heEjV54jkDgYqOm1tEq02qvnKoqu5yaSKRZA=w800)
2021-07-20 21:06:36 +09:00
2022-02-28 14:54:29 +09:00
Hasuraを使用してPostgresデータベースに接続したREST APIを構築し、それを利用したWebアプリを作成できました🎉