flask vuejs

Example & Tips, Flask with Vue.js.

388
71
JavaScript

Flask-Vue.js

šŸ£ compatible Vue.js v2 šŸ£

confrict a Jinja2 delimiter and Vue.js delimiterā€¦

=> change Jinja2 delimiter

from flask import Flask

class CustomFlask(Flask):
  jinja_options = Flask.jinja_options.copy()
  jinja_options.update(dict(
    block_start_string='(%',
    block_end_string='%)',
    variable_start_string='((',
    variable_end_string='))',
    comment_start_string='(#',
    comment_end_string='#)',
  ))

app = CustomFlask(__name__)

#
# your flask code here
#

=> change Vue.js delimiter

var app = new Vue({
  el: "#app",
  delimiters: ["[[", "]]"],
  data: {
    message: "Hello Vue!"
  }
})

Example & Tips

This repository contain some example, if you want to try it please do as follows.

requirements: Flask (=> pip install Flask)

$ git clone https://github.com/yymm/flask-vuejs.git
$ cd flask-vuejs
$ python app.py

see localhost:5000.

Heroku Button

Try it now.

Deploy

Menu

  • [x] Jinja2 & Vue.js
  • [x] with SQLAlchemy(Flask-SQLAlchemy)
  • [x] moreā€¦
  • SPA
    • using CDN
      • [x] vue-router
    • using Node.js(using vue-cli ā€˜webpack-simpleā€™)
      • [x] Single File Component
      • [ ] TypeScript with Single File Component
      • [x] Vuex
  • [x] Vue.js v0.10.3