anchor.vue 263 B

1234567891011121314151617
  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: 'anchor',
  10. data () {
  11. return {
  12. msg: 'Welcome to Your Vue.js App'
  13. }
  14. }
  15. }
  16. </script>