饮水思源:https://www.bilibili.com/video/BV1Zy4y1K7SH?p=99&spm_id_from=pageDriver

①创建项目

vue create vue-github-example

启动调试:

cd vue-github-example
npm run serve

用谷歌浏览器访问相应链接,笔记本用FN+F12启动开发者模式。修改App.vue,删去HelloWorld.vue等文件。

<template>
  <h1>hello</h1>
</template>

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

<style>
</style>
App.vue

相关文章:

  • 2022-01-02
  • 2022-12-23
  • 2021-04-30
  • 2022-12-23
  • 2022-12-23
  • 2021-10-06
  • 2021-10-23
猜你喜欢
  • 2022-12-23
  • 2022-02-23
  • 2022-12-23
  • 2019-06-25
  • 2021-11-21
  • 2021-06-16
  • 2022-12-23
相关资源
相似解决方案