Skip to content
/ vue-pnf Public

A vue library for showing Page Not Found / 404 page using awesome CSS animation

Notifications You must be signed in to change notification settings

devmnj/vue-pnf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vue-pnf

Status GitHub Issues GitHub Pull Requests License


A Vue library consisting of one or more component for showing Page Not Found / 404.

📝 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

✍️ Authors