[mod] component
This commit is contained in:
parent
57ba0a5938
commit
4bea950bbe
@ -5,6 +5,9 @@
|
||||
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/html" id="cmp-link">
|
||||
<div>{{ hello }}</div>
|
||||
</script>
|
||||
This is a test
|
||||
<div>Page loaded at: {{now | date "Mon Jan 2 15:04:05 MST 2006"}}</div>
|
||||
<div id="app">
|
||||
@ -12,6 +15,7 @@
|
||||
<div> {{ message }}</div>
|
||||
<pre>{{ json }}</pre>
|
||||
</div>
|
||||
<my-link>foo</my-link>
|
||||
|
||||
<script src="index.js"></script>
|
||||
</body>
|
||||
|
@ -56,3 +56,12 @@ var app = new Vue({
|
||||
this.load()
|
||||
}
|
||||
});
|
||||
//Define a new global component called button-counter
|
||||
app.component('my-link', {
|
||||
data() {
|
||||
return {
|
||||
count: 0
|
||||
}
|
||||
},
|
||||
template: '#cmp-link'
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user