[Fix] fix @import "xxx.scss" to @import "xxx"

This commit is contained in:
hyperbola 2021-01-19 18:34:36 +08:00
parent 3a923c164a
commit 73716ef8d1
No known key found for this signature in database
GPG Key ID: D987B1D59478B51F
5 changed files with 5 additions and 5 deletions

View File

@ -20,5 +20,5 @@ export default class AgendaCard extends Vue {
</script>
<style lang="scss">
@import '@/assets/scss/CFP/card.scss';
@import '@/assets/scss/CFP/card';
</style>

View File

@ -79,5 +79,5 @@ export default class CfpHeader extends Vue {}
</script>
<style lang="scss">
@import '@/assets/scss/CFP/header.scss';
@import '@/assets/scss/CFP/header';
</style>

View File

@ -77,5 +77,5 @@ export default class Schedule extends Vue {
</script>
<style lang="scss">
@import '@/assets/scss/CFP/schedule.scss';
@import '@/assets/scss/CFP/schedule';
</style>

View File

@ -21,5 +21,5 @@ export default class Topic extends Vue {
</script>
<style lang="scss">
@import '@/assets/scss/CFP/topic.scss';
@import '@/assets/scss/CFP/topic';
</style>

View File

@ -71,5 +71,5 @@ export default class CFP extends Vue {
</script>
<style lang="scss">
@import '@/assets/scss/footer.scss';
@import '@/assets/scss/footer';
</style>