-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update devapp1.yml * latest from last rel (#1263) * latest from last rel * latest nginx --------- Co-authored-by: gloriajw <aagg@comcast.net> Co-authored-by: Upstage system user <upstage@app1.upstage.org.nz-1621696771938-s-2vcpu-4gb-nyc1-01> * #1271 "delete scene" doesn't work until stage reloaded * #1270 message window doesn't disappear * need interim pop-up message #1274 * problems with creating a new stage #1267 * upload new image option has disappeared #1269 * unable to put video on stage #1277 * random x appears & doesn't go away #1278 * small updates --------- Co-authored-by: gloriajw <aagg@comcast.net> Co-authored-by: Upstage system user <upstage@app1.upstage.org.nz-1621696771938-s-2vcpu-4gb-nyc1-01> Co-authored-by: webdev604 <webdev.604@hotmail.com>
- Loading branch information
1 parent
033ea80
commit 882eff1
Showing
19 changed files
with
826 additions
and
24 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
Empty file.
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,47 @@ | ||
<template> | ||
<div class="tabs is-boxed" :class="{ 'is-centered': centered }"> | ||
<ul> | ||
<li | ||
v-for="item in items" | ||
:key="item.key" | ||
:class="{ 'is-active': tab === item.key }" | ||
@click="tab = item.key" | ||
> | ||
<a> | ||
<span v-if="item.icon" class="icon is-small"> | ||
<i :class="item.icon" aria-hidden="true"></i> | ||
</span> | ||
<span>{{ item.label }}</span> | ||
</a> | ||
</li> | ||
<slot name="extras"></slot> | ||
</ul> | ||
</div> | ||
<div class="tab-content"> | ||
<div :class="`tab-${item.key}`" v-for="item in items" :key="item.key"> | ||
<template v-if="tab === item.key"> | ||
<slot :name="item.key"></slot> | ||
</template> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import { ref } from "@vue/reactivity"; | ||
export default { | ||
props: ["items", "centered"], | ||
setup: (props) => { | ||
const tab = ref(props.items[0].key); | ||
return { tab }; | ||
}, | ||
}; | ||
</script> | ||
|
||
<style> | ||
.tabs { | ||
position: sticky; | ||
top: 0; | ||
background-color: white; | ||
z-index: 10; | ||
} | ||
</style> |
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
Oops, something went wrong.