23 lines
389 B
Vue
23 lines
389 B
Vue
<template lang="pug">
|
|
CategoryPage(:resources="resources")
|
|
</template>
|
|
|
|
<script>
|
|
import CategoryPage from '../../components/CategoryPage'
|
|
import store from '../../store.json'
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
resources: store.find(x => x.title.toLowerCase() === 'javascript')
|
|
}
|
|
},
|
|
components: {
|
|
CategoryPage
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
</style>
|