Last active
August 20, 2018 13:06
-
-
Save enkot/fd2c79cd1d32874522050554ede74838 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
import Catch from './catchDecorator' | |
@Component | |
export default class App extends Vue { | |
@Catch | |
async created() { | |
const data = await api.getData() // throws Error | |
} | |
@Catch | |
mounted() { | |
this.name = this.name.toUpperCase() // throws TypeError | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment