_keyword.vue 472 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div class="container" id="searchResult">
  3. <result-title></result-title>
  4. <kind></kind>
  5. <good-list></good-list>
  6. </div>
  7. </template>
  8. <script>
  9. import { GoodList, Kind, ResultTitle } from '~components/search'
  10. import 'bootstrap/dist/css/bootstrap.min.css'
  11. export default{
  12. layout: 'main',
  13. data () {
  14. return {
  15. key: this.$route.query.w
  16. }
  17. },
  18. components: {
  19. ResultTitle,
  20. Kind,
  21. GoodList
  22. }
  23. }
  24. </script>