-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(NcAppNavigationItem): run cypress tests
Signed-off-by: Raimund Schlüßler <[email protected]>
- Loading branch information
1 parent
9d3fe51
commit 27d92b2
Showing
3 changed files
with
24 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<template> | ||
<div style="width: 300px; background: white;"> | ||
<NcAppNavigationItem name="Home" to="/" :editable="true" /> | ||
<NcAppNavigationItem name="Foo" to="/foo" :editable="true" /> | ||
<NcAppNavigationItem name="Back" active :editable="true" /> | ||
<NcAppNavigationItem name="Bar" :editable="true" /> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import NcAppNavigationItem from '../../src/components/NcAppNavigationItem/NcAppNavigationItem.vue' | ||
import { defineComponent } from 'vue' | ||
export default defineComponent({ | ||
components: { NcAppNavigationItem }, | ||
}) | ||
</script> |