и в header.php в тег head прописал такие строчки
Я подключил самую последнюю версию jquery
как проверить подключился ли он?
function getVideoImage(path, secs, callback) {
var me = this
var video = document.createElement('video');
video.onloadedmetadata = function() {
if ('function' === typeof secs) {
secs = secs(this.duration);
}
this.currentTime = Math.min(Math.max(0, (secs < 0 ? this.duration : 0) + secs), this.duration);
};
video.onseeked = function(e) {
var canvas = document.createElement('canvas');
canvas.height = video.videoHeight;
canvas.width = video.videoWidth;
var ctx = canvas.getContext('2d');
ctx.drawImage(video, 0, 0, canvas.width, canvas.height);
var img = new Image();
img.src = canvas.toDataURL();
callback.call(me, img, this.currentTime, e);
};
video.onerror = function(e) {
callback.call(me, undefined, undefined, e);
};
video.src = path;
}
<template>
<router-link :to="href" class="tabbar-item">
<div class="icon"><component :is="iconComponent"/></div>
<div class="view-name">{{ viewName }}</div>
</router-link>
</template>
<script>
export default {
props: ['iconName'],
computed () {
iconComponent() {
return import('@/components/icons/' + this.iconName)
}
}
}
</script>
v-on:blur
change
return axios.post(`https://api.vk.com/method/${method}`, baseParametres)
.then(answer => answer.request)
.catch(answer => Promise.reject(answer.error))
return axios.post(`https://api.vk.com/method/${method}`, baseParametres)
.then(({request}) => request)
.catch(({error}) => Promise.reject(error))
<select multiple>...</select>
и позвольте системе самостоятельно отобразить UI для пользователя. Например на мобильных это будет поп-ап со списком из чекбоксов и кнопкой "Подтвердить". <details>
чтобы скрывать их.