Answer the question
In order to leave comments, you need to log in
Create a Vue component and an event inside it?
Task: create a component with a slider that changes the font size in the block.
<div id="controls">
<font-size target="headline"></font-size>
<div>
Vue.component('font-size', {
props: ['target'],
template: '<div id="controls-item"><input type="range" value="30"></div>'
});
new Vue({
el: '#controls',
})
function fontResize(selector, target) { }
template: '<div id="controls-item"><input type="range" value="30" onchange="fontResize(this, ' {{ target }} ')"></div>'
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question