https://github.com/abakermi/vue-feeds-youtube
vue component to get youtube feeds
https://github.com/abakermi/vue-feeds-youtube
Last synced: 2 months ago
JSON representation
vue component to get youtube feeds
- Host: GitHub
- URL: https://github.com/abakermi/vue-feeds-youtube
- Owner: abakermi
- License: mit
- Created: 2020-05-17T21:52:11.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-25T05:17:42.000Z (8 months ago)
- Last Synced: 2025-04-19T03:58:28.237Z (3 months ago)
- Language: Vue
- Size: 2.69 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vue-feeds-youtube
[](https://travis-ci.com/abakermi/vue-feeds-youtube) [](https://badge.fury.io/js/vue-feeds-youtube)vue component to get youtube feeds
## Installation
### Install via CDN
```htmlVue.use(VFeedYoutube.default)
```
### Install via NPM
```sh
$ npm install vue-feeds-youtube --save
```#### Register as Component
```js
import Vue from 'vue'
import VFeedYoutube from 'vue-feeds-youtube'
export default {
name: 'App',
components: {
VFeedYoutube
}
}
```#### Register as Plugin
```js
import Vue from 'vue'
import VFeedYoutube from 'vue-feeds-youtube'
Vue.use(VFeedYoutube)
```## Usage
```js
import VFeedYoutube from 'vue-feeds-youtube'
export default {
name: 'App',
components: {
VFeedYoutube
}
}```
## Props
|Props|Description|Type|Required|
|-----|-----------|----|--------|
|ChannelId|Youtube channel's id |String|true## Related
- [rss-parser](https://github.com/rbren/rss-parser) - A small library for turning RSS XML feeds into JavaScript objects.
## License
vue-feeds-youtube is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)i)