diff --git a/src/components/Playlist.vue b/src/components/Playlist.vue
index c5b588e9..d12725b8 100644
--- a/src/components/Playlist.vue
+++ b/src/components/Playlist.vue
@@ -14,7 +14,11 @@
>
- {{ playlist.videos }} Videos
+
+
{{ playlist.videos }} Videos
+
+
+
@@ -47,6 +51,11 @@ export default {
unmounted() {
window.removeEventListener("scroll", this.handleScroll);
},
+ computed: {
+ getRssUrl: _this => {
+ return _this.apiUrl() + "/rss/playlists/" + _this.$route.query.list;
+ },
+ },
methods: {
async fetchPlaylist() {
return await await this.fetchJson(this.apiUrl() + "/playlists/" + this.$route.query.list);
diff --git a/src/main.js b/src/main.js
index 42a397b4..1ea58aed 100644
--- a/src/main.js
+++ b/src/main.js
@@ -8,6 +8,7 @@ import {
faCheck,
faHeart,
faHeadphones,
+ faRss,
} from "@fortawesome/free-solid-svg-icons";
import { faGithub, faBitcoin, faYoutube } from "@fortawesome/free-brands-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
@@ -22,6 +23,7 @@ library.add(
faHeart,
faHeadphones,
faYoutube,
+ faRss,
);
import("uikit/dist/css/uikit-core.css");