Skip to content

Instantly share code, notes, and snippets.

<template>
<q-card ref="content">
<q-card-section :style="{ height: getHeight, overflowY: 'hidden' }"
:class="sectionClasses">
<slot />
<div v-if="need"
class="absolute-bottom full-width gradient"
v-show="!expanded"
:style="{ height: height*0.75 + 'px' }" />
<q-btn v-if="need" round flat color="teal"
<?xml version='1.0' encoding='utf-8'?>
<widget id="ru.zakupsad.app" version="2.2.18" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Apache Cordova</name>
<description>Apache Cordova Team</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">Apache Cordova Team</author>
<content src="index.html" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
$this->instance->request_body = [
'to' => $this->token->token,
'collapseKey' => $this->instance->topic,
'apns-collapse-id' => $this->instance->topic,
'Topic' => $this->instance->topic,
'collapse_key' => $this->instance->topic,
'time_to_live' => $this->instance->ttl ?: 3600,
'data' => [
'title' => $this->instance->notification['title'] ?? env('APP_NAME'),
'body' => $this->instance->notification['body'],
<template>
<q-input filled v-model="value" label="Адрес" class="suggestions-input"
hint="Выберите вариант или продолжите ввод"
:placeholder="placeholder" />
</template>
<script>
import 'suggestions-jquery'
export default {
props: {