We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d92f21f commit af1bc5cCopy full SHA for af1bc5c
e2e/__projects__/style/components/External.vue
@@ -8,6 +8,8 @@
8
9
<style module="$style2" src="~__styles/external.css" />
10
11
+<style module="$style3" src="./styles/external.css"></style>
12
+
13
<style module="css">
14
.a {
15
background: color(red a(90%));
e2e/__projects__/style/test.js
@@ -46,5 +46,6 @@ test('process External', () => {
46
expect(wrapper.vm).toBeTruthy()
47
expect(wrapper.vm.$style.testClass).toEqual('testClass')
48
expect(wrapper.vm.$style2.testClass).toEqual('testClass')
49
+ expect(wrapper.vm.$style3.testClass).toEqual('testClass')
50
expect(wrapper.vm.css.a).toEqual('a')
51
})
0 commit comments