diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-03 01:03:29 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-03 01:03:29 +0900 |
| commit | 5e9cc09fcb6cb88cc4d2c3040bf085e9e278d22e (patch) | |
| tree | 246d32546b846566e3dcbd324cd4054cd9a733b9 /src/client/components/form | |
| parent | wip: better error handling (diff) | |
| download | sharkey-5e9cc09fcb6cb88cc4d2c3040bf085e9e278d22e.tar.gz sharkey-5e9cc09fcb6cb88cc4d2c3040bf085e9e278d22e.tar.bz2 sharkey-5e9cc09fcb6cb88cc4d2c3040bf085e9e278d22e.zip | |
Bios (#7286)
* wip
* wip
* wip
Diffstat (limited to 'src/client/components/form')
| -rw-r--r-- | src/client/components/form/link.vue | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/client/components/form/link.vue b/src/client/components/form/link.vue index 7093f50397..2efc6b58c9 100644 --- a/src/client/components/form/link.vue +++ b/src/client/components/form/link.vue @@ -8,7 +8,7 @@ <Fa :icon="faExternalLinkAlt" class="icon"/> </span> </a> - <MkA class="main _button _formPanel _formClickable" :class="{ active }" :to="to" v-else> + <MkA class="main _button _formPanel _formClickable" :class="{ active }" :to="to" :behavior="behavior" v-else> <span class="icon"><slot name="icon"></slot></span> <span class="text"><slot></slot></span> <span class="right"> @@ -38,6 +38,10 @@ export default defineComponent({ type: Boolean, required: false }, + behavior: { + type: String, + required: false, + }, }, data() { return { |