Fixed script tag sample
parent
d39b38659b
commit
3bec317cd6
|
@ -66,17 +66,17 @@ import Dialog from 'primevue/dialog/sfc';
|
||||||
|
|
||||||
<h5>Script Tag</h5>
|
<h5>Script Tag</h5>
|
||||||
<p>Other alternative is utilizing the components directly within the browser with the <i>iife</i> build. Note that PrimeVue does not provide a <i>umd</i> build.</p>
|
<p>Other alternative is utilizing the components directly within the browser with the <i>iife</i> build. Note that PrimeVue does not provide a <i>umd</i> build.</p>
|
||||||
<pre v-code><code>
|
<pre v-code><code><template v-pre>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>PrimeVue Demo</title>
|
<title>PrimeVue Demo</title>
|
||||||
<link href="https://unpkg.com/primevue/resources/themes/saga-blue/theme.cs " rel="stylesheet">
|
<link href="https://unpkg.com/primevue/resources/themes/saga-blue/theme.css" rel="stylesheet">
|
||||||
<link href="https://unpkg.com/primevue/resources/primevue.min.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">
|
<link href="https://unpkg.com/primeicons/primeicons.css" rel="stylesheet">
|
||||||
|
|
||||||
<script src="https://unpkg.com/vue@next"></script>
|
<script src="https://unpkg.com/vue@next"></script>
|
||||||
<script src="https://unpkg.com/primevue/inputtext"></script>
|
<script src="https://unpkg.com/primevue/inputtext/inputtext.min.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -105,7 +105,7 @@ import Dialog from 'primevue/dialog/sfc';
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
</template>
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
|
||||||
<h5>Dependencies</h5>
|
<h5>Dependencies</h5>
|
||||||
|
|
Loading…
Reference in New Issue