2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
|
|
|
<div class="mk-google">
|
2021-11-19 11:36:12 +01:00
|
|
|
<input v-model="query" type="search" :placeholder="q">
|
2021-04-20 16:22:59 +02:00
|
|
|
<button @click="search"><i class="fas fa-search"></i> {{ $ts.search }}</button>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { defineComponent } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2021-10-27 16:42:09 +02:00
|
|
|
props: {
|
|
|
|
q: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
}
|
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
data() {
|
|
|
|
return {
|
2020-02-27 07:13:46 +01:00
|
|
|
query: null,
|
2020-01-29 20:37:25 +01:00
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.query = this.q;
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
search() {
|
2021-10-27 16:42:09 +02:00
|
|
|
window.open(`https://www.google.com/search?q=${this.query}`, '_blank');
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mk-google {
|
|
|
|
display: flex;
|
|
|
|
margin: 8px 0;
|
|
|
|
|
|
|
|
> input {
|
|
|
|
flex-shrink: 1;
|
|
|
|
padding: 10px;
|
|
|
|
width: 100%;
|
|
|
|
height: 40px;
|
|
|
|
font-size: 16px;
|
2020-02-27 07:13:46 +01:00
|
|
|
border: solid 1px var(--divider);
|
2020-01-29 20:37:25 +01:00
|
|
|
border-radius: 4px 0 0 4px;
|
2020-07-11 17:43:17 +02:00
|
|
|
-webkit-appearance: textfield;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> button {
|
|
|
|
flex-shrink: 0;
|
2020-07-11 17:43:17 +02:00
|
|
|
margin: 0;
|
2020-01-29 20:37:25 +01:00
|
|
|
padding: 0 16px;
|
2020-02-27 07:13:46 +01:00
|
|
|
border: solid 1px var(--divider);
|
2020-01-29 20:37:25 +01:00
|
|
|
border-left: none;
|
|
|
|
border-radius: 0 4px 4px 0;
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
box-shadow: 0 2px 4px rgba(#000, 0.15) inset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|