egirlskey/src/client/components/remote-caution.vue

35 lines
654 B
Vue
Raw Normal View History

2020-03-21 04:07:02 +00:00
<template>
<div class="jmgmzlwq _panel"><fa :icon="faExclamationTriangle" style="margin-right: 8px;"/>{{ $t('remoteUserCaution') }}<a :href="href" rel="nofollow noopener" target="_blank">{{ $t('showOnRemote') }}</a></div>
2020-03-21 04:07:02 +00:00
</template>
<script lang="ts">
import Vue from 'vue';
2020-03-21 04:10:44 +00:00
import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons';
2020-03-21 04:07:02 +00:00
export default Vue.extend({
props: {
href: {
type: String,
required: true
},
},
2020-03-21 04:10:44 +00:00
data() {
return {
faExclamationTriangle
};
}
2020-03-21 04:07:02 +00:00
});
</script>
<style lang="scss" scoped>
.jmgmzlwq {
font-size: 0.8em;
padding: 16px;
> a {
margin-left: 4px;
color: var(--accent);
}
}
</style>