s9e121 how content gets compiled
This commit is contained in:
parent
2eb6c7ebb4
commit
fc28afcc98
@ -3,7 +3,7 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12">
|
<div class="col-xs-12">
|
||||||
<app-quote>
|
<app-quote>
|
||||||
<h2>The Quote</h2>
|
<h2>{{quoteTitle}}</h2>
|
||||||
<p>A Simple Quote</p>
|
<p>A Simple Quote</p>
|
||||||
</app-quote>
|
</app-quote>
|
||||||
</div>
|
</div>
|
||||||
@ -15,6 +15,11 @@
|
|||||||
import Quote from './components/Quote.vue'
|
import Quote from './components/Quote.vue'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
data(){
|
||||||
|
return {
|
||||||
|
quoteTitle: "The Quote"
|
||||||
|
}
|
||||||
|
},
|
||||||
components: {
|
components: {
|
||||||
appQuote: Quote
|
appQuote: Quote
|
||||||
}
|
}
|
||||||
@ -22,5 +27,8 @@
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style scoped>
|
||||||
|
h2 {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -17,6 +17,8 @@
|
|||||||
padding: 30px;
|
padding: 30px;
|
||||||
margin: 30px auto;
|
margin: 30px auto;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
}
|
||||||
|
h2 {
|
||||||
|
color: blue
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
Loading…
Reference in New Issue
Block a user