Flask extension for rendering Vue.js SFCs
Project description
Flask-Vue-SFC
Flask-Vue-SFC is a Flask extension that translates and renders Vue.js Single File Components.
In short, it translates code like this
<template> <div>Current time is: <b>{{ date }}</b></div> </template> <script> Vue.use(vueMoment) export default { name: 'App', data() { return { date: null } }, created() { this.setCurrentTime() }, methods: { setCurrentTime() { this.date = this.$moment().format('dddd, MMMM Do YYYY, h:mm:ss a') setTimeout(() => { this.setCurrentTime() }, 1000) } } } </script>
into this
<div id="vue-sfc-996dcfa8e795"> <div>Current time is: <b>[[ date ]]</b> </div> </div> <script> Vue.use(vueMoment); new Vue({ el:'#vue-sfc-996dcfa8e795', delimiters:['[[',']]'], name:'App', data(){ return{ date: null } }, created() { this.setCurrentTime() }, methods: { setCurrentTime() { this.date = this.$moment().format('dddd, MMMM Do YYYY, h:mm:ss a'); setTimeout(()=>{ this.setCurrentTime() },1e3) } } }) </script>
which renders something like this:
Current time is: Friday, October 16th 2020, 2:35:27 am
- Disclaimer:
This project is not a replacement for webpack in any way. Depending on the complexity of one’s project and specific cases, this project might or might not be useful.
Any third party JS library used must be UMD compatible.
All code outside the Vue App must be ES5 compatible.
Usage
Here’s an example on how to use the extension
from flask_vue_sfc import VueSFC from flask_vue_sfc.helpers import render_vue_component def create_app(): app = Flask(__name__) VueSFC(app) @app.route('/example1') def example1(): component = render_vue_component('index.vue') return render_template('example.html', component=component)
Since render_vue_component returns html syntax we need to make sure jinja doesn’t try to escape it. So be sure to always use the safe filter when rendering the component like so
{{ component|safe }}
Feel free to checkout the examples folder for other examples.
Configuration
There are configuration options used by Flask-Vue-SFC.
Option |
Default |
|
---|---|---|
VUE_USE_MINIFIED |
True |
Whether or not to use the minified scripts. |
VUE_SERVE_LOCAL |
False |
If True, scripts will be served from the local instance. |
Motivation?
Over the past year or so, I’ve found myself working on projects which involve Vue.js and Flask/Django. In most scenarios the frontend app was a standalone application so a lot of thought didn’t have to be put into how it interacts with the backend besides through API calls. In some scenarios, however, the requirement was usage of Vue.js as library instead of a framework. The latter pattern is becoming more common with the slow demise of jQuery (Yes, yes I said it :) )
Organizing Vue.js code becomes quite problematic due to the fact there’s conventional way of organizing code when it’s not being used as a framework. Perhaps this is because it’s all dependent on the backend framework being used and it’s conventions.
Then it dawned unto me. What if devs could work with single file components directly without having to deal with webpack???
Contributions
All contributions are welcome. Feel feel free to raise an issue and open a PR if you want to fix a bug or add a feature.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file Flask-Vue-SFC-0.0.3.tar.gz
.
File metadata
- Download URL: Flask-Vue-SFC-0.0.3.tar.gz
- Upload date:
- Size: 219.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0.post20200210 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89bbabeee19a8c9d144a9fa2e416d444439bab92730fa559d5261865f093db41 |
|
MD5 | 139ba04bc0c398e4da4d3fe03a5e45c9 |
|
BLAKE2b-256 | 700edd176fa8c699b85f7f11d7d2a647fc651cfb5d66768ff3718a7c67456094 |
File details
Details for the file Flask_Vue_SFC-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: Flask_Vue_SFC-0.0.3-py3-none-any.whl
- Upload date:
- Size: 222.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0.post20200210 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 714906bdad5655ddaca2e2d009b434996327ec5d0bc72f99abeb739f415de857 |
|
MD5 | a60d368eaf9482e680b0ce7436195d08 |
|
BLAKE2b-256 | a8f66a518476ae130060093276e20ae696aea62728a0fe90b60a982386023483 |