You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to test spinners, but when I copy/paste code as example, using unpkg, vue can't compile due tu color (I trie it with ring-loader).
Here Vue report :
[Vue warn]: Error compiling template:
invalid expression: private fields are not currently supported in
#bada55
Raw expression: :color="#bada55"
1 | <div id="app">
2 | <ring-loader class="spinner" :color="#bada55" :loading="loading" :size="130"></ring-loader>
| ^^^^^^^^^^^^^^^^
3 | <button v-on:click="showSpinLoader()">Load eavy stuff</button>
4 | <div id="data" v-show="showData">
(found in <Root>)
sizeUnit="px" also doesn't work, but vue can compile.
The text was updated successfully, but these errors were encountered:
If you check the syntax in color you forgot the single quote :color=" '#number' ". If you don`t want to use both quotes (single and double) you can try color:"#number"
I want to test spinners, but when I copy/paste code as example, using unpkg, vue can't compile due tu
color
(I trie it with ring-loader).Here Vue report :
sizeUnit="px"
also doesn't work, but vue can compile.The text was updated successfully, but these errors were encountered: