new Vue({
el: "#app",
router,
store,
beforeCreate() {
this.$http
.jsonp(getURL(method, { offset: 1, album_id: 0, extended: 1 }))
.then(response => {
return response.json();
})
.then(data => {
return data.response.items.map(items => {
///
return items;
});
})
.then(data => {
this.$store.dispatch("getData", data);
});
{
const createClient = XMPP.createClient({
jid: "u1@example.com",
password: "1",
transport: "websocket",
wsURL: "ws://example.com/xmpp-websocket"
});
Vue.prototype.$createClient = createClient;
export default {
name: "App",
created: function() {
console.log(this.$createClient)
}
};
</script>
И можно ли, когда будет возможность выгружать в столбец F тип файла ( apl.../..document or apl.../..spreadsheet) вместо этого длинного имени типа файла- лишь будет Google Sheet or Google Document или другие упрощенные названия?
function typeFile(type){
var t = "Таблица";
var n = "Что то другое";
if(type="application/vnd.google-apps.spreadsheet"){
return t
}else{
return n
}
}