This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"extends": ["plugin:prettier/recommended"] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<draggable :element="'ul'" :list="tasks" :move="checkMoveSub" :options="{ group: { name: 'cards' }}"> | |
<li v-for="task in tasks" class="task"> | |
<div>{{ task.name }}</div> | |
</li> | |
</draggable> | |
</template> | |
<script> | |
import draggable from 'vuedraggable' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<section class="component"> | |
<div class="wrapper"> | |
<draggable element="ul" :list="cards" class="boards" :move="checkMove"> | |
<li class="board" v-for="card in cards"> | |
<div class="card"> | |
<div class="card__header"> | |
<h4>{{ card.name }}</h4> | |
</div> | |
<div class="card__body"> |