Created
December 23, 2018 11:04
-
-
Save geekjourneyx/8808e0b69525ba19873b8fc01f594550 to your computer and use it in GitHub Desktop.
Vuejs practical C3
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
| <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