Skip to content

Instantly share code, notes, and snippets.

@enkot
Last active August 20, 2018 13:06
Show Gist options
  • Save enkot/fd2c79cd1d32874522050554ede74838 to your computer and use it in GitHub Desktop.
Save enkot/fd2c79cd1d32874522050554ede74838 to your computer and use it in GitHub Desktop.
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