[
`${PATHS.doc}/**/*.*`,
`${PATHS.pic}/**/*.*`,
`!${PATHS.pic}/**/*.+(pdn|psd|ai)`
]
[
`${PATHS.doc}/**/*.!(pdn|psd|ai)`,
`${PATHS.pic}/**/*.*`
]
function build() {
return gulp.src([
`${PATHS.doc}/**/*.*`,
`${PATHS.pic}/**/*.*`
],{
ignore: `${PATHS.pic}/**/*.+(pdn|psd|ai)`
})
.pipe(gulp.dest("./dist/"));
}
data() {
return {
projects: []
}
}
async fetch() {
this.projects = await this.$axios.$get(URL_PROJECTS)
}
var app = new Vue({
el: '#content',
data: {
range: 1
},
computed: {
rand: function () {
return Math.random() * this.range ; //ожидалось что app.rand будет давать случайное число
}
},
methods: {
show: function (event) {
alert('Случайное число: ' + this.rand); // но нет, число одно и то же
},
}
});
<div id="content">
<button v-on:click="show">показать число</button>
</div>
new Vue({
el: '#content',
data: {
likes: 0,
},
});
<div id="content"><button v-on:click="likes += 1">+1</button></div>
<ul class = "dots">
<li v-for = "(value, index) in cd.software" :key = "index">{{ value }}</li>
</ul>
1. можно ли использовать template в template во vue компоненте?
можно ли из дочернего компонента воздействовать на родительский?
$emit('my-event')
событий из дочернего, в родителе ловим на элементе тегом @my-event=""
Например, если использовать pug переменные и мне нужно изменить цвет фона. В родителе я указываю - var bgpage;, а само значение пишу в дочерних компонентах?
RewriteEngine On
RewriteCond %{HTTPS} =off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [QSA,L]
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R,L]
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
<div class="catalog-section" v-for="category in categories" :key="category.index">
<h2 class="catalog-section--title title-default">{{category.name}} {{category.id}}</h2>
<p class="catalog-section--label label-default" v-if="category.label">{{category.label}}</p>
<div class="row">
<template v-for="item in posts">
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-4" v-if="item.category === category.id" :key="item.index">
<product-item :item=item />
</div>
</template>
</div>
</div>