Created
September 19, 2018 01:59
-
-
Save Mason-McGough/04f857dd5a2d68fa221a499f06643529 to your computer and use it in GitHub Desktop.
How to override delimiters in Vue.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// if using Vue as standalone / script tag | |
Vue.options.delimiters = ['V{', '}V']; | |
// if using Vue with in-browser compilation / full-build | |
var instance = new Vue({ | |
el: '#id', | |
delimiters: ['V{', '}V'], | |
... | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment