1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<template> <div style="padding-top: 20px"> <h2>Ostatnie wpisy</h2> <post-list /> </div> </template> <script> import PostList from '~/components/PostList' export default { components: { PostList } } </script>