2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
|
|
|
<div class="mk-google">
|
2021-11-19 04:36:12 -06:00
|
|
|
<input v-model="query" type="search" :placeholder="q">
|
2022-02-24 23:40:11 -06:00
|
|
|
<button @click="search"><i class="fas fa-search"></i> {{ $ts.searchByGoogle }}</button>
|
2020-01-29 13:37:25 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-06 23:44:05 -06:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref } from 'vue';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2022-01-06 23:44:05 -06:00
|
|
|
const props = defineProps<{
|
|
|
|
q: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const query = ref(props.q);
|
|
|
|
|
|
|
|
const search = () => {
|
|
|
|
window.open(`https://www.google.com/search?q=${query.value}`, '_blank');
|
|
|
|
};
|
2020-01-29 13:37:25 -06: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 00:13:46 -06:00
|
|
|
border: solid 1px var(--divider);
|
2020-01-29 13:37:25 -06:00
|
|
|
border-radius: 4px 0 0 4px;
|
2020-07-11 10:43:17 -05:00
|
|
|
-webkit-appearance: textfield;
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
> button {
|
|
|
|
flex-shrink: 0;
|
2020-07-11 10:43:17 -05:00
|
|
|
margin: 0;
|
2020-01-29 13:37:25 -06:00
|
|
|
padding: 0 16px;
|
2020-02-27 00:13:46 -06:00
|
|
|
border: solid 1px var(--divider);
|
2020-01-29 13:37:25 -06:00
|
|
|
border-left: none;
|
|
|
|
border-radius: 0 4px 4px 0;
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
box-shadow: 0 2px 4px rgba(#000, 0.15) inset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|