[ Updated: Feb 9 2020 ]
@sendgrid/mailaxios
| <template> | |
| <q-page-sticky position="bottom-right" :offset="[18, 18]"> | |
| <q-btn | |
| fab | |
| icon="eva-sun-outline" | |
| color="primary" | |
| no-caps | |
| @click="startScan" | |
| > | |
| <span class="q-mx-sm">Scan</span> |
| <template> | |
| <q-card style="min-width: 50vw"> | |
| <q-card-section> | |
| <q-btn | |
| v-if="isSignedIn" | |
| color="blue" | |
| icon="fab fa-google" | |
| :label="`Continue as ${userProfile.name}`" | |
| no-caps | |
| rounded |
| <template> | |
| <div id="app"> | |
| <GmapMap | |
| :center="center" | |
| :zoom="18" | |
| map-style-id="roadmap" | |
| :options="mapOptions" | |
| style="width: 100vmin; height: 50vmin" | |
| ref="mapRef" | |
| @click="handleMapClick" |
| const Service = require('../models/service').model | |
| const Business = require('../models/business').model | |
| exports.search_get = async (req, res) => { | |
| const { searchQuery } = req.query | |
| let query = {} | |
| if (searchQuery) { | |
| query.name = { $regex: searchQuery, $options: 'i' } |
| <template> | |
| <div contenteditable @input="onInput">{{ value }}</div> | |
| </template> | |
| <script> | |
| export default { | |
| props: ['value'], | |
| methods: { | |
| onInput(e) { |
| <template> | |
| <q-card> | |
| <q-card-section> | |
| <div class="text-center"> | |
| <video | |
| ref="webcam" | |
| autoplay | |
| playsinline | |
| muted | |
| width="400" |