1.1.2 • Published 3 years ago

@codehat/vue-pnf v1.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Status GitHub Issues GitHub Pull Requests License


📝 Table of Contents

🧐 About

A set of components for showing error page or 404 in Vuejs project.

🏁 Components

This library includes following components

  • Animated, an animate 404 Page with CSS animation

🎈Prerequisites

  • Nodejs
  • Vuejs

🎈Installing

You can install the package from NPM registry or from github packages registry

npm i --save @codehat/vue-pnf

🎈 Usage

Here is simple usage

<template>
  <div class="home">
    <v-404/>     
  </div>
</template>
<script>
import { Animated } from "@codehat/vue-pnf";
export default {  
  components: {
 "v-404": Animated,    
  },
};
</script>

⛏️ Built Using