We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CDN Script can not read primevue.config
https://unpkg.com/[email protected]/core/core.min.js
No response
3.13.0
3.x
ES5
CDN Script
Chrome
<link href="https://unpkg.com/primevue/resources/themes/lara-light-indigo/theme.css" rel="stylesheet"> <link href="https://unpkg.com/primevue/resources/primevue.min.css" rel="stylesheet"> <link href="https://unpkg.com/primeicons/primeicons.css" rel="stylesheet"> <script src="https://unpkg.com/vue@next"></script> <script src="https://unpkg.com/primevue/core/core.min.js"></script> <script src="https://unpkg.com/primevue/slider/slider.min.js"></script> <body> <div id="app"> <p-slider v-model="val"></p-slider> <h6>{{val}}</h6> </div> <script> const {createApp, ref} = Vue; const App = { setup() { const val = ref(null); return { val }; }, components: { 'p-slider': primevue.slider } }; createApp(App).use(primevue.config.default).mount("#app"); </script> </body>
The text was updated successfully, but these errors were encountered:
It's fixed for v.3.13.1.
Thanks,
Sorry, something went wrong.
tugcekucukoglu
No branches or pull requests
Describe the bug
CDN Script can not read primevue.config
https://unpkg.com/[email protected]/core/core.min.js
Reproducer
No response
PrimeVue version
3.13.0
Vue version
3.x
Language
ES5
Build / Runtime
CDN Script
Browser(s)
Chrome
Steps to reproduce the behavior
Expected behavior
No response
The text was updated successfully, but these errors were encountered: