@codehat/vue-pnf
v1.1.2
Published
<h3 align="center">vue-pnf</h3>
Downloads
4
Maintainers
Readme
📝 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>