Home.vue 311 B

12345678910111213141516171819202122
  1. <template>
  2. <div class="home">
  3. <b-button :to="{ name: 'biblio', query }">
  4. Biblio
  5. </b-button>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. name: 'Home',
  11. data () {
  12. return {
  13. query: {
  14. mode: 'card-list',
  15. texts: [[1, 10, 2], [20, 5, 19]]
  16. }
  17. }
  18. }
  19. }
  20. </script>