Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abakermi/vue-feeds-youtube
vue component to get youtube feeds
https://github.com/abakermi/vue-feeds-youtube
Last synced: about 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 (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-25T05:17:42.000Z (2 months ago)
- Last Synced: 2024-11-01T17:02:43.847Z (about 2 months ago)
- Language: Vue
- Size: 2.69 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vue-feeds-youtube
[![Build Status](https://travis-ci.com/abakermi/vue-feeds-youtube.svg?branch=master)](https://travis-ci.com/abakermi/vue-feeds-youtube) [![npm version](https://badge.fury.io/js/vue-feeds-youtube.svg)](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)