Skip to content
Snippets Groups Projects
Home.vue 326 B
Newer Older
  • Learn to ignore specific revisions
  • <template>
      <div class="ui row">
        <search class="eight wide column"></search>
      </div>
    </template>
    
    <script>
    import Search from '@/components/audio/Search'
    
    export default {
      name: 'browse',
      components: { Search }
    }
    </script>
    
    <!-- Add "scoped" attribute to limit CSS to this component only -->
    <style scoped>
    </style>