FL3NKEY / vue-lifecycle

☀️ A Vue.js lifecycle directives.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vue-lifecycle

A Vue.js lifecycle directives.

Install

Via npm npm install vue-lifecycle --save

import VueLifecycle from 'vue-lifecycle';
//OR
var VueLifecycle = require('vue-lifecycle');

Vue.use(VueLifecycle);

Via script tag

<script src="path/to/vue.js"></script>
<script src="path/to/node_modules/vue-lifecycle/dist/vue-lifecycle.min.js"></script>
<script>
	Vue.use(VueLifecycle);
</script>

Usage

Created

<some-component v-on-created="someFunction"></some-component>

Mounted

<some-component v-on-mounted="someFunction"></some-component>

Destroyed

<some-component v-on-destroyed="someFunction"></some-component>

About

☀️ A Vue.js lifecycle directives.

License:MIT License


Languages

Language:JavaScript 100.0%