You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
294 B

  1. <template>
  2. <div>
  3. <p>{{ msg }}</p>
  4. <input type="text" v-model="msg" />
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. name: 'app',
  10. data () {
  11. return {
  12. msg: 'Welcome to Your Vue.js App'
  13. }
  14. }
  15. }
  16. </script>