This file contains hidden or 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> | |
<div id="app"> | |
<!-- <img src="./assets/logo.png"> | |
<HelloWorld msg="Welcome to Your Vue.js App"/> --> | |
<div class="reveal"> | |
<div class="slides"> | |
<section>Single Horizontal Slide</section> | |
<section> | |
<section>Vertical Slide 1</section> | |
<section>Vertical Slide 2</section> |
This file contains hidden or 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
// imports from date-fns https://github.com/date-fns/date-fns | |
const isWeekend = require('date-fns/is_weekend'); | |
const endOfMonth = require('date-fns/end_of_month'); | |
const startOfDay = require('date-fns/start_of_day'); | |
const startOfMonth = require('date-fns/start_of_month'); | |
const addDays = require('date-fns/add_days'); | |
const subDays = require('date-fns/sub_days'); | |
// test day | |
const now = new Date(2018,1,28); |