🐛 修复 动态加载 css 的示例中多了一个 「 } 」

This commit is contained in:
崮生 2020-04-02 14:36:47 +08:00
parent 76e66a29ea
commit 5c2fd025af
2 changed files with 3 additions and 1 deletions

View File

@ -19,7 +19,6 @@
font-style: normal; font-style: normal;
font-weight: normal; font-weight: normal;
} }
}
</style>` </style>`
$: selected_font = font_list.filter(font => font.selected); $: selected_font = font_list.filter(font => font.selected);
function generate_font() { function generate_font() {

3
static/svelte.d.ts vendored Normal file
View File

@ -0,0 +1,3 @@
declare module '*.svelte' {
export default any;
}