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 4afea00 commit ce609a9Copy full SHA for ce609a9
e2e/__projects__/style/components/External.vue
@@ -6,6 +6,8 @@
6
7
<style module src="./styles/external.css" />
8
9
+<style module="$style2" src="~__styles/external.css" />
10
+
11
<style module="css">
12
.a {
13
background: color(red a(90%));
e2e/__projects__/style/test.js
@@ -45,5 +45,6 @@ test('process External', () => {
45
const wrapper = mount(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.css.a).toEqual('a')
50
})
0 commit comments