Skip to content

Instantly share code, notes, and snippets.

@RuanAragao
Created January 10, 2022 22:21
Show Gist options
  • Save RuanAragao/c0505e7cb74891f6de7bddd675fe33c4 to your computer and use it in GitHub Desktop.
Save RuanAragao/c0505e7cb74891f6de7bddd675fe33c4 to your computer and use it in GitHub Desktop.
VueJS Django Admin CDN Exemple
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.0.3/vue.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
new Vue({
el: '#app',
// define data - initial display text
data: {
text: "JS Power"
},
delimiters: ["<%","%>"]
})
})
</script>
<div id="app">
<p><% text %></p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment