vue 模板 template init

<template>
  <div>
  </div>
</template>

<script>
export default {
  name: '模板名称',
  props: {},
  components: {},
  data () {
    return {
    }
  },
watch: {}, computed: {}, methods: {}, created () { }, activated () { }, mounted () { }, beforeDestroy () { } }
</script> <style lang="less"> </style>
原文地址:https://www.cnblogs.com/pengchenggang/p/12042673.html