1. <template>
    2. <div id="app">
    3. <div>{{msg}}</div>
    4. </div>
    5. </template>
    6. <script>
    7. export default {
    8. name: "app",
    9. data() {
    10. return {
    11. msg: "hello world"
    12. };
    13. };
    14. </script>

    -