mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-24 00:01:03 +08:00
- Deleted GitHub callback and authentication handler files. - Added new component for displaying headlines. - Implemented hot news feed component with external API fetching. - Created dynamic news provider page with routing. - Developed news organization about page with animations and data fetching. - Introduced a code of conduct document.
8 lines
156 B
Vue
8 lines
156 B
Vue
<script lang="ts" setup>
|
|
const route = useRoute();
|
|
|
|
const provider = route.params.provider;
|
|
const slug = route.params.slug;
|
|
</script>
|
|
<template></template>
|