Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <script>
  2. import api from "@/api";
  3.  
  4. export default {
  5. created() {
  6. api.get(`/not-found`)
  7. .then(res => this.resource = res.data.resource);
  8. },
  9. data() {
  10. return {
  11. resource: {}
  12. }
  13. }
  14. }
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement