Welcome to mirror list, hosted at ThFree Co, Russian Federation.

journal.js « js « static - github.com/AmazingRise/hugo-theme-diary.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 849fc5703eaabd3e14e91fc2e4d7b7469bfaa0ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
new SmoothScroll('a#globalBackToTop');

Vue.component('parent',{
    props:['name','type'],
    data: function () {
        return {
            isHidden: true
        }
    },
    template: `
    <div class="a-block" :class="type" v-on:click="isHidden = !isHidden">
        {{ name }}
        <div class="nav-link-subitem" v-if="!isHidden">
            <slot></slot>
        </div>
    </div>
    `
});