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
Hi Can you give me an example using as CDN? Do you add as vue.use or vue.component? thank you
The text was updated successfully, but these errors were encountered:
Hello @amchconsult, you can try with jsfiddle or the following below
<div id="app"> <h3>{{ message }}</h3> </div>
<script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script> <script src="https://unpkg.com/[email protected]/dist/vuejs-loading-screen.min.js"></script> <script> // Register the plugin Vue.use(VuejsLoadingScreen); // Create a new Vue instance const app = new Vue({ el: '#app', data() { return { message: 'Hello Vue!', } }, mounted() { this.$isLoading(true) } }) </script>
Sorry, something went wrong.
thank you, it works great
No branches or pull requests
Hi
Can you give me an example using as CDN?
Do you add as vue.use or vue.component?
thank you
The text was updated successfully, but these errors were encountered: