about summary refs log tree commit diff
path: root/src/components/FacebookFeed.vue
blob: 7abf93f777e14f46bc829f4d152afad5a43af1d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
  <section>
    <h1>Ostatnie wpisy</h1>
  </section>
</template>

<script>
export default {
  mounted() {
    fetch(
      `http://fetchrss.com/rss/5d6675308a93f8773c8b45685d66750d8a93f8bb388b4567.xml`
    ).then(console.log);
  }
};
</script>