git clone from github

This commit is contained in:
chiayin
2023-01-31 13:38:00 +08:00
commit cd074c3c04
28 changed files with 11030 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
<template>
<h1>這是 Login </h1>
</template>

View File

@@ -0,0 +1,16 @@
<template>
<header>
<Header />
</header>
<h1>這是 MainContainer </h1>
</template>
<script>
import Header from "./header/index.vue"
export default {
components: {
Header,
},
};
</script>

View File

@@ -0,0 +1,27 @@
<template>
<h1>這是 Header </h1>
<div class="flex flex-col relative h-full">
<div class="w-full flex">
<img src="../../assets/DSP_LOGO.svg" class="h-10"/>
</div>
<div class="flex w-full bg-[#61696F] text-white justify-between shadow-md shadow-black:opacity-25 z-20 h-[2.5rem]">
<div class="pl-2 flex w-1/3">
<span class="m-2 leading-6 pr-4 cursor-pointer border-r border-white "
>
Save
</span>
</div>
<div class="pl-2 flex items-center w-1/3 justify-center">
<a-breadcrumb class="flex text-[#c0c0c0]">
<a-breadcrumb-item>name</a-breadcrumb-item>
<a-breadcrumb-item>name</a-breadcrumb-item>
</a-breadcrumb>
</div>
<div class="w-1/3"></div>
</div>
</div>
</template>
<script>
</script>