Created
August 30, 2020 15:09
-
-
Save bachhm-dev/eceba99d6b7e6e49a2f1254d4a660415 to your computer and use it in GitHub Desktop.
This file contains 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
<template> | |
<div id="app"> | |
<p>Upper: {{ upperName }} out of {{ name }}</p> | |
</div> | |
</template> | |
<script> | |
export default { | |
data(){ | |
return { | |
name: "author", | |
} | |
}, | |
computed: { | |
upperName(){ | |
return this.name.toUpperCase() + "VUE_3"; | |
} | |
} | |
}; | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment