Advertisement
Guest User

Result.vue

a guest
Jan 21st, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <template>
  2. <div class="hello">
  3. <p>
  4. <a :href="link" target="_new">{{api}}</a> - {{desc}}
  5. </p>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. name: 'Result',
  11. props: {
  12. link: String,
  13. api: String,
  14. desc: String
  15. }
  16. }
  17. </script>
  18. <!-- Add "scoped" attribute to limit CSS to this component only -->
  19. <style scoped></style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement