<!-- 
まずは初めてのプログラム。
 IDがapp1のdivタグで囲まれた範囲をmountさせて、その範囲にVue.jsを展開している
-->

<!-- Use preprocessors via the lang attribute! e.g. <template lang="pug"> -->
<template>
  <div id="app1">
    <h1>{{ message }}</h1> 
  </div> 
</template>

<script>
export default {
  data() {
    return {
      message: 'Welcome to Vue!'
    };
  },
};
</script>

<!-- Use preprocessors via the lang attribute! e.g. <style lang="scss"> -->
<style>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}

</style>

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.