Atsuhiko / Web-App

Webアプリ研究会
2 stars 2 forks source link

Flask / HTML / Vue.js #20

Open yuyuyuriko78 opened 4 years ago

yuyuyuriko78 commented 4 years ago

Flask / HTML 簡単な例

@app.route('/index') def index(): return render_template('index.html')

app.run()

- index.html
```html
<h1>hello Flask and html!</h1>

image

yuyuyuriko78 commented 4 years ago

Flask / Vue JSONも使用する例