纯小白入手 vue3.0 CLI - 2.3 - 新组件 Forms.vue 中学习表单

vue3.0 CLI 真小白一步一步入手全教程系列:https://www.cnblogs.com/ndos/category/1295752.html

我的 github 地址 - vue3.0Study - 阶段学习成果都会建立分支。

==========================

新组件 - 新路由 Forms.vue ( 下面仅介绍如何创立, 不进行介绍 ) :

<template><div> <input v-model="message" placeholder="edit me"> <p>Message is: {{ message }}</p> </div></template> <script> export default { name: 'forms', // eslint-disable-next-line data: function () { return { d: '' // eslint-disable-next-line } } } </script>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wpyyzf.html