fix(css): 引入方式变更,防止 @import 污染

This commit is contained in:
BTMuli
2023-04-02 18:23:45 +08:00
parent 07ce9a3cf5
commit c713a28d5b
2 changed files with 2 additions and 6 deletions

View File

@@ -52,6 +52,4 @@ onMounted(async () => {
}, 200);
});
</script>
<style lang="css">
@import "../assets/css/anno-parser.css";
</style>
<style lang="css" src="../assets/css/anno-parser.css" scoped />

View File

@@ -44,6 +44,4 @@ onMounted(async () => {
}, 200);
});
</script>
<style lang="css">
@import "../assets/css/post-parser.css";
</style>
<style lang="css" src="../assets/css/post-parser.css" scoped />