Skip to content

Instantly share code, notes, and snippets.

@bachhm-dev
Created August 30, 2020 15:09
Show Gist options
  • Save bachhm-dev/eceba99d6b7e6e49a2f1254d4a660415 to your computer and use it in GitHub Desktop.
Save bachhm-dev/eceba99d6b7e6e49a2f1254d4a660415 to your computer and use it in GitHub Desktop.
<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