Skip to content

Instantly share code, notes, and snippets.

@geekjourneyx
Created December 23, 2018 11:04
Show Gist options
  • Select an option

  • Save geekjourneyx/8808e0b69525ba19873b8fc01f594550 to your computer and use it in GitHub Desktop.

Select an option

Save geekjourneyx/8808e0b69525ba19873b8fc01f594550 to your computer and use it in GitHub Desktop.
Vuejs practical C3
<div id="app">
{{formattedText()}}
</div>
<script>
var app = new Vue({
el: "#app",
data: {
text: 'Devin/Wade'
},
computed: function () {
return this.text.split(',').join(' ')
}
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment