Skip to content

Commit

Permalink
run build
Browse files Browse the repository at this point in the history
  • Loading branch information
eriknygren committed Dec 15, 2022
1 parent e44e370 commit a90ace3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
17 changes: 8 additions & 9 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Development Workspace</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="https://cdn.jsdelivr.net/npm/vue@2.5.13/dist/vue.js"></script>
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
<!-- Javascript bundle gets inyected right here -->
<script type="text/javascript" src="vue-line-clamp.js"></script></head>
<body>
Expand Down Expand Up @@ -40,16 +40,15 @@
</p>
</div>
<script>
Vue.use(window['vue-line-clamp'], {
importCss: false,
});

new Vue({
el: '#app',
data: {
lines: 2,
var app = Vue.createApp({
data: function () {
return { lines: 2 };
},
});
app.use(window['vue-line-clamp'], {
importCss: false,
});
app.mount('#app');
</script>
</body>
</html>
2 changes: 1 addition & 1 deletion dist/vue-line-clamp.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a90ace3

Please sign in to comment.