aboutsummaryrefslogtreecommitdiff
path: root/src/views/AllBrands.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/AllBrands.vue')
-rw-r--r--src/views/AllBrands.vue9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/views/AllBrands.vue b/src/views/AllBrands.vue
new file mode 100644
index 0000000..d07e316
--- /dev/null
+++ b/src/views/AllBrands.vue
@@ -0,0 +1,9 @@
+<script setup lang="ts">
+import brandsTable from './../components/brands_table.vue'
+import newBrand from './../components/new_brand.vue'
+</script>
+
+<template>
+ <newBrand />
+ <brandsTable />
+</template>