Guest User

Untitled

a guest
Feb 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <template>
  2. <div>
  3. <answer-box
  4. answerId="availability"
  5. question="Do you stil make ABC?"
  6. :answer="answer1" />
  7. </div>
  8. </template>
  9.  
  10. <script>
  11. import AnswerBox from '@/components/FAQAnswer'
  12.  
  13. export default {
  14. components: {
  15. AnswerBox,
  16. },
  17. data() {
  18. return {
  19. answer1: 'Sorry, but <strong>no</strong> &mdash; we don't make
  20. those anymore. However, you may head to our
  21. <router-link to="/partners">partners</router-link>
  22. to check if they still have them',
  23. }
  24. },
  25. }
  26. </script>
Add Comment
Please, Sign In to add comment