Skip to content

Commit

Permalink
test(example): add test case
Browse files Browse the repository at this point in the history
  • Loading branch information
sinoon committed Mar 2, 2022
1 parent 2855e97 commit 4c64cae
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/playground/css/index.vue
@@ -1,5 +1,10 @@
<template>
<div class="css-in-less">test for import css in less with SFC</div>
<div class="css-in-less">
test for import css in less with SFC, color will be yellow
</div>
<div class="css-in-less-2">
test for import less in less with SFC, color will be blue
</div>
</template>

<script setup></script>
Expand Down
4 changes: 4 additions & 0 deletions packages/playground/css/nested/css-in-less.less
@@ -1 +1,5 @@
@import url('./css-in-less.css');
@import './css-in-less.css';

@import url('./css-in-less-2.less');
@import './css-in-less-2.less';

0 comments on commit 4c64cae

Please sign in to comment.