欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解如何创建并发布一个 vue 组件

程序员文章站 2023-08-26 18:35:00
步骤 创建 vue 的脚手架 npm install -g @vue/cli vue init webpack 绑定 git 项目...

步骤

创建 vue 的脚手架

npm install -g @vue/cli
vue init webpack

绑定 git 项目

cd existing_folder
git init
git remote add origin http://gitlab.alipay-inc.com/ampg/my-projec.git
git add .
git commit
git push -u origin master

写组件

创建组件 src/components/xxx.vue

例如:

<template>
 <div class="hello">
  <h1>{{ msg }}</h1>
  <h2>essential links</h2>
 </div>
</template>

<script>
export default {
 name: 'helloworld',
 data () {
  return {
   msg: 'welcome to your vue.js app'
  }
 }
}
</script>

<!-- add "scoped" attribute to limit css to this component only -->
<style scoped>
h1, h2 {
 font-weight: normal;
}
</style>

发布

npm publish

展示

详解如何创建并发布一个 vue 组件

代码参考

参考文档
packaging vue components for npm
vue cli 3

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。