Skip to content

Instantly share code, notes, and snippets.

@mmikkel
Created September 15, 2016 00:38
Show Gist options
  • Save mmikkel/251b809cea0d947902dae08733cec227 to your computer and use it in GitHub Desktop.
Save mmikkel/251b809cea0d947902dae08733cec227 to your computer and use it in GitHub Desktop.
Vue.js Craft template
{% includeJsFile('https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.26/vue.js') %}
{% set script %}
Vue.config.debug = true;
Vue.config.delimiters = ['${', '}'];
new Vue({
el: '#content',
data: {
message: 'Hello Vue.js!'
}
});
{% endset %}
{% includeJs script %}
{% block content %}
<div id="content" role="main">
${ message }
</div>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment