建设娱乐城网站,怎么做外网网站监控,一个专业做设计的网站,网站建设方案书可自行撰写在vue3中能不能用vue2语法 回顾上篇文章创建vue3项目hello-world,将使用创建的项目。重新编写hello-world,先删除src文件夹,再创建src文件夹,编写vue2语法的hello-world,看能不能运行 删除src文件夹 创建src文件夹 创建main.ts 创建App.vue 创建components文件夹 在创建c…在vue3中能不能用vue2语法回顾上篇文章创建vue3项目hello-world,将使用创建的项目。重新编写hello-world,先删除src文件夹,再创建src文件夹,编写vue2语法的hello-world,看能不能运行删除src文件夹创建src文件夹创建main.ts创建App.vue创建components文件夹在创建components内创建Car.vuesrc项目结构如下##main.ts引入挂载vue3import { createApp } from 'vue' import App from './App.vue' const app = createApp(App) app.mount('#app')根组件App引入组件Cartemplate Car/ /template script lang="ts" import Car from './components/Car.vue' export default { name: 'heiil', components: { Car } } /scriptCar组件使用vue2语法添加数据、方法我们