Заготовка страницы поиска
This commit is contained in:
@@ -141,6 +141,7 @@ class App extends Vue {
|
||||
}
|
||||
|
||||
.el-main {
|
||||
padding: 5px;
|
||||
background-color: #E6EDF4;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<template>
|
||||
<el-container>
|
||||
Раздел CardIndex в разработке
|
||||
<el-container direction="vertical">
|
||||
<el-header height="50px">Header</el-header>
|
||||
<router-view></router-view>
|
||||
</el-container>
|
||||
</template>
|
||||
|
||||
@@ -18,3 +19,9 @@ class CardIndex extends Vue {
|
||||
}
|
||||
//-----------------------------------------------------------------------------
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.el-header {
|
||||
border: 1px solid black;
|
||||
}
|
||||
</style>
|
||||
20
client/components/CardIndex/Search/Search.vue
Normal file
20
client/components/CardIndex/Search/Search.vue
Normal file
@@ -0,0 +1,20 @@
|
||||
<template>
|
||||
<el-container>
|
||||
Раздел Search в разработке
|
||||
</el-container>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
//-----------------------------------------------------------------------------
|
||||
import Vue from 'vue';
|
||||
import Component from 'vue-class-component';
|
||||
|
||||
export default @Component({
|
||||
})
|
||||
class Search extends Vue {
|
||||
created() {
|
||||
}
|
||||
|
||||
}
|
||||
//-----------------------------------------------------------------------------
|
||||
</script>
|
||||
Reference in New Issue
Block a user