aplr / vue-dvd-saver

Will it hit the corner?

Home Page:https://aplr.github.io/vue-dvd-saver

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vue DVD Saver

Your beloved nostalgic screensaver for your beloved JavaScript Framework.

Will it hit the corner?

Quick Start

Install

You can install vue-dvd-saver either using a package manager or by including the script in your html.

Package Manager

npm install vue-dvd-saver
yarn install vue-dvd-saver

Unpkg

<script src="https://www.unpkg.com/vue-dvd-saver@latest/dist/dvdSaver.umd.min.js">

Basic Usage

<template>
    <div>
        <ScreenSaver class="screenSaver" />
    </div>
</template>

<script>
import ScreenSaver from "vue-dvd-saver";

export default {
    components: {
        ScreenSaver
    }
}
</script>

<style>
.screenSaver {
    width: 100%;
    height: 100%;
}
</style>

Local development

Project setup

npm install

Compile, hot-reload and run dev-server for development

npm run serve

Compile and minify for production

npm run build

Compile and minify docs

npm run docs

Lint and fix files

npm run lint

About

Will it hit the corner?

https://aplr.github.io/vue-dvd-saver

License:MIT License


Languages

Language:Vue 78.1%Language:JavaScript 16.1%Language:HTML 5.8%