vue-say-hay
v1.0.7
Published
npm install --save vue-say-hay
Downloads
2
Readme
Install via NPM
npm install --save vue-say-hay
Register as Plugin
import Vue from 'vue'
import VueSayHay from 'vue-say-hay'
Vue.component('vue-say-hay', VueSayHay)
Usage
<template>
<vue-say-hay :data="myText"></vue-say-hay>
</template>
<script>
import VueSayHay from 'vue-say-hay'
export default {
name: 'App',
components: {
VueSayHay
},
data: () => ({
myText : 'my name is alziqziq'
}),
}
</script>