Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • subugoe/ahiqar/website
1 result
Show changes
Commits on Source (3)
node_modules node_modules
.vscode/settings.json .vscode/settings.json
.DS_Store
...@@ -2,6 +2,18 @@ ...@@ -2,6 +2,18 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [0.0.5](https://gitlab.gwdg.de/subugoe/ahiqar/website/compare/v0.0.4...v0.0.5) (2021-06-11)
### Features
* search input field ([e0e13cd](https://gitlab.gwdg.de/subugoe/ahiqar/website/-/commit/e0e13cdb0d9513a8f9fa4e80b2a491d58dd7e806)), closes [#44](https://gitlab.gwdg.de/subugoe/ahiqar/website/-/issues/44)
### Chore
* update .gitignore ([ce3f0dd](https://gitlab.gwdg.de/subugoe/ahiqar/website/-/commit/ce3f0dd28ef1bee182bbc97165a4f3365d2e9cb6))
### [0.0.4](https://gitlab.gwdg.de/subugoe/ahiqar/website/compare/v0.0.3...v0.0.4) (2021-06-11) ### [0.0.4](https://gitlab.gwdg.de/subugoe/ahiqar/website/compare/v0.0.3...v0.0.4) (2021-06-11)
......
{ {
"name": "ahiqar-website", "name": "ahiqar-website",
"version": "0.0.4", "version": "0.0.5",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
{ {
"name": "ahiqar-website", "name": "ahiqar-website",
"version": "0.0.4", "version": "0.0.5",
"description": "", "description": "",
"main": "", "main": "",
"authors": { "authors": {
......
<template> <template>
<v-card <v-app-bar
flat app
flat
color="primary"
> >
<v-tabs <v-container>
align-with-title <v-col>
hide-slider <v-row class="align-center">
background-color="primary" <v-btn
class="rounded-0" depressed
dark color="primary"
role="navigation" to="/"
> class="mr-1"
<v-tab to="/"> >Ahiqar</v-btn>
Ahiqar <v-menu offset-y>
</v-tab> <template v-slot:activator="{ on, attrs }">
<v-tab> <v-btn
<v-menu offset-y> color="primary"
<template v-slot:activator="{ on, attrs }"> dark
<v-btn depressed
color="primary" v-bind="attrs"
dark v-on="on"
depressed class="mr-1"
v-bind="attrs" >
v-on="on" Meta Edition
> </v-btn>
Meta Edition </template>
</v-btn> <v-list>
</template> <v-list-item
<v-list> v-for="(item, index) in metaEdition"
<v-list-item :key="index"
v-for="(item, index) in metaEdition" :to="item.to"
:key="index" >
:to="item.to" <v-list-item-title>{{ item.title }}</v-list-item-title>
> </v-list-item>
<v-list-item-title>{{ item.title }}</v-list-item-title> </v-list>
</v-list-item> </v-menu>
</v-list> <v-menu offset-y>
</v-menu> <template v-slot:activator="{ on, attrs }">
</v-tab> <v-btn
<v-tab> color="primary"
<v-menu offset-y> dark
<template v-slot:activator="{ on, attrs }"> depressed
<v-btn v-bind="attrs"
color="primary" v-on="on"
dark class="mr-1"
depressed >
v-bind="attrs" Editions
v-on="on" </v-btn>
> </template>
Editions <v-list>
</v-btn> <v-list-item
</template> v-for="(item, index) in editions"
<v-list> :key="index"
<v-list-item :to="item.to"
v-for="(item, index) in editions" >
:key="index" <v-list-item-title>{{ item.title }}</v-list-item-title>
:to="item.to" </v-list-item>
> </v-list>
<v-list-item-title>{{ item.title }}</v-list-item-title> </v-menu>
</v-list-item> <v-btn
</v-list> depressed
</v-menu> color="primary"
</v-tab> to="/project.html"
<v-tab to="/project.html"> >Project</v-btn>
Project <v-spacer></v-spacer>
</v-tab> <v-text-field
</v-tabs> label="Search"
</v-card> dense
single-line
background-color="white"
rounded
hide-details
width="200px"
class="pr-2"
></v-text-field>
<v-btn
depressed
color="primary"
>Search</v-btn>
</v-row>
</v-col>
</v-container>
</v-app-bar>
</template> </template>
<script> <script>
......