VUE3前端开发入门

环境安装部署

1安装node.js

cmd检测安装是否成功

检查是否安装成功:node -v

图片

 

2、搭建vue环境

npm install -g @vue/cli

检测是否安装成功

vue -V

图片

 

3、创建vue3项目

vue create 项目名(demo01)

图片

xxx.vue 的结构分3个部分:

<template>
<div class=”hello”>
<h1>{{ msg }}</h1>

</div>
</template>

<script lang=”ts”>
import { Options, Vue } from ‘vue-class-component’;

</script>

<style scoped>
h3 {
margin: 40px 0 0;
}

</style>

package.json:

图片

为安装包信息和程序入口

4、添加组件

npm install element-plus

http://element-plus.org/zh-CN/

App.vue加入组件

import { Options, Vue } from ‘vue-class-component’;
import Tree from “@/components/Tree.vue”;
import TreeTable from “@/components/TreeTable.vue”;

5、启动项目

cd 项目名

npm run serve

运行成功:

图片

原创文章,作者:guozi,如若转载,请注明出处:https://www.sudun.com/ask/81917.html

Like (0)
guozi的头像guozi
Previous 2024年5月31日 下午2:11
Next 2024年5月31日 下午2:14

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注