本文介绍: 学习 https://blog.csdn.net/qq_29974229/article/details/129119279?spm=1001.2014.3001.5502

学习链接

https://blog.csdn.net/qq_29974229/article/details/129119279?spm=1001.2014.3001.5502

nvm use v16.15.0
npm install vue -g
npm install -g @vue/cli

在这里插入图片描述

vue create k8s-plantform-fe

选择 Default

在这里插入图片描述

cd k8s-plantform-fe
npm run serve
cd   ./src
mkdir views
mkdir router
touch router/index.js
mkdir layout
mkdir utils
cd  k8s-plantform-fe
npm install element-plus
npm install vue-router
npm install nprogress
npm install axios
npm install json2yaml
npm install js-yaml
cat vue.config.js 
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
  transpileDependencies: true
})
cat src/main.js 
import { createApp } from 'vue'
import App from './App.vue'
createApp(App).mount('#app')
npm run serve
cat src/App.vue 
<template&gt;
  <img alt="Vue logo" src="./assets/logo.png"&gt;
  <HelloWorld msg="Welcome to Your Vue.js App"/>
</template>

<script>
import HelloWorld from './components/HelloWorld.vue'

export default {
  name: 'App',
  components: {
    HelloWorld
  }
}
</script>

<style>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>

原文地址:https://blog.csdn.net/qq_21442867/article/details/134641085

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_24108.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

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