mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 21:14:23 +00:00
16 lines
No EOL
221 B
TypeScript
16 lines
No EOL
221 B
TypeScript
export default defineEventHandler(async (event) => {
|
|
return {
|
|
data: [
|
|
{
|
|
text: "國內",
|
|
url: "domestic",
|
|
default: true,
|
|
},
|
|
{
|
|
text: "國外",
|
|
url: "global",
|
|
default: false,
|
|
},
|
|
]
|
|
}
|
|
}) |