aboutsummaryrefslogtreecommitdiff
path: root/src/views/AllBrands.vue
blob: d07e3160a06c4e06ec4cbf28a17233bf1405e63c (plain)
1
2
3
4
5
6
7
8
9
<script setup lang="ts">
import brandsTable from './../components/brands_table.vue'
import newBrand from './../components/new_brand.vue'
</script>

<template>
  <newBrand />
  <brandsTable />
</template>