A Vue library consisting of one or more component for showing Page Not Found / 404.
- 📝 Table of Contents
- 🧐 About
- 🏁 Components
- 🎈Prerequisites
- 🎈Installing
- 🎈 Usage
- ⛏️ Built Using
- ✍️ Authors
A set of components for showing error page or 404 in Vuejs project.
This library includes following components
- Animated, an animate 404 Page with CSS animation
- Nodejs
- Vuejs
You can install the package from NPM registry or from github packages registry
npm i --save @codehat/vue-pnf
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>
- @manojap - Idea & Initial work