wikijs-fork/client/js/components/copy-path.vue

18 lines
294 B
Vue
Raw Normal View History

2017-05-05 02:41:33 +00:00
<template>
<div>
<p>{{ msg }}</p>
<input type="text" v-model="msg" />
</div>
</template>
<script>
export default {
name: 'app',
data () {
return {
msg: 'Welcome to Your Vue.js App'
}
}
}
</script>