| 12345678910111213141516171819202122232425262728 | <!DOCTYPE html><html lang="en">  <head>    <meta charset="UTF-8">    <title>Title</title>    <link rel="stylesheet" href="../lib/bulma-0.2.3.css" />    <!-- https://cdnjs.cloudflare.com/ajax/libs/bulma/0.2.3/css/bulma.css"  -->    <link rel="stylesheet" href="../styles.css" />    <link rel="stylesheet" href="styles.css" />  </head>  <body>    <nav>      <h1><span class="index">13</span>Component communication 2: event dispatcher</h1>      <ul>        <li><a href="../lesson12">Prev</a></li>        <li><a href="../lesson14">Next</a></li>      </ul>    </nav>    <div id="root" class="container">      <coupon @applied="onCouponApplied"></coupon>      <h1 v-if="couponApplied">You used a coupon!</h1>    </div>    <script src="../lib/vue-2.1.3.js"></script>    <script src="code.js"></script>  </body></html>
 |