Vue
by yusuke_ten
HTML
<div id="app">
<x-template-component></x-template-component>
</div>
<script type="text/x-template" id="kbtit">
<div>バァン!(大破)</div>
</script>
CSS
body {
background: #20262E;
padding: 20px;
font-family: Helvetica;
}
#app {
background: #fff;
border-radius: 4px;
padding: 20px;
transition: all 0.2s;
}
.component {
background: #fff;
border-radius: 4px;
padding: 20px;
transition: all 0.2s;
}
li {
margin: 8px 0;
}
h2 {
font-weight: bold;
margin-bottom: 15px;
}
del {
color: rgba(0, 0, 0, 0.3);
}
Vue
Vue.component('x-template-component', {
template: '#kbtit'
})
new Vue({
el: '#app',
})