Created
May 10, 2018 13:53
-
-
Save cristofersousa/c66aa65ce6850d0f7dba518027bc7865 to your computer and use it in GitHub Desktop.
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="teste"> | |
| <p>Mensagem para o usuário: "{{ mensagem }}"</p> | |
| <p>Mensagem modificada: "{{ mensagemModificada }}"</p> | |
| </div> | |
| <script> | |
| let vm = new Vue({ | |
| el: '#teste', | |
| data: { | |
| mensagem: 'Teste' | |
| }, | |
| computed: { | |
| // Propriedade computada | |
| mensagemModificada: function () { | |
| return this.mensagem.toUpperCase().substring(1, 3); | |
| } | |
| } | |
| }) | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment