Заготовка страницы поиска

This commit is contained in:
Book Pauk
2019-01-02 22:01:13 +07:00
parent 3c06fd611e
commit 259d4c4302
3 changed files with 30 additions and 2 deletions

View File

@@ -141,6 +141,7 @@ class App extends Vue {
}
.el-main {
padding: 5px;
background-color: #E6EDF4;
color: #000;
}

View File

@@ -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>

View 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>