Commit 209387e4 authored by TTS Kieu Tuan Anh's avatar TTS Kieu Tuan Anh

fix UI

parent db448f35
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
<b-navbar-nav> <b-navbar-nav>
<b-nav-item href="/home/users">USER</b-nav-item> <b-nav-item href="/home/users">USER</b-nav-item>
<b-nav-item href="/home/categories">CATEGORY</b-nav-item> <b-nav-item href="/home/categories">CATEGORY</b-nav-item>
<b-nav-item href="/home/products">PRODUCT</b-nav-item>
</b-navbar-nav> </b-navbar-nav>
<!-- Right aligned nav items --> <!-- Right aligned nav items -->
......
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
v-model="ordering" v-model="ordering"
required required
/> />
<!-- <b-form-select v-model="selected" :options="options"></b-form-select> --> <b-form-select v-model="selected" :options="options"></b-form-select>
<label>Image :</label> <label>Image :</label>
<b-form-file <b-form-file
@change="fileSelected" @change="fileSelected"
...@@ -208,6 +208,7 @@ import Nav from "@/components/Nav"; ...@@ -208,6 +208,7 @@ import Nav from "@/components/Nav";
import Navigation from "@/components/Navigation"; import Navigation from "@/components/Navigation";
import axios from "axios"; import axios from "axios";
import notification from "@/components/Notification"; import notification from "@/components/Notification";
import { BootstrapVue, BootstrapVueIcons } from 'bootstrap-vue'
export default { export default {
layout: 'admin', layout: 'admin',
...@@ -225,13 +226,7 @@ export default { ...@@ -225,13 +226,7 @@ export default {
error: '', error: '',
dialog: false, dialog: false,
dialogDelete: false, dialogDelete: false,
options: [ options: [],
{ value: null, text: 'Please select an option' },
{ value: 'a', text: 'This is First option' },
{ value: 'b', text: 'Selected Option' },
{ value: { C: '3PO' }, text: 'This is an option with object value' },
{ value: 'd', text: 'This one is disabled', disabled: true }
],
headers: [ headers: [
{ {
text: "Name", text: "Name",
......
<template>
<div>
<b-breadcrumb>
<b-breadcrumb-item href="/home">
<b-icon icon="house-fill" scale="1.25" shift-v="1.25" aria-hidden="true"></b-icon>
Home
</b-breadcrumb-item>
<b-breadcrumb-item href="/home/categories">Product</b-breadcrumb-item>
</b-breadcrumb>
</div>
</template>
<script>
import { onMounted } from "vue";
import axios from "axios";
import VueAxios from "vue-axios";
import Nav from "@/components/Nav";
export default {
layout: "admin",
components: { Nav },
middleware: ['web'],
};
</script>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment