浏览代码

上传新文件

张晓翠 2 年之前
父节点
当前提交
e6ee8db925
共有 1 个文件被更改,包括 26 次插入0 次删除
  1. 26 0
      baby-institute-admin-ui-front-master/plop-templates/component/index.hbs

+ 26 - 0
baby-institute-admin-ui-front-master/plop-templates/component/index.hbs

@@ -0,0 +1,26 @@
+{{#if template}}
+<template>
+  <div />
+</template>
+{{/if}}
+
+{{#if script}}
+<script>
+export default {
+  name: '{{ properCase name }}',
+  props: {},
+  data() {
+    return {}
+  },
+  created() {},
+  mounted() {},
+  methods: {}
+}
+</script>
+{{/if}}
+
+{{#if style}}
+<style lang="scss" scoped>
+
+</style>
+{{/if}}