form.vue 350 B

12345678910111213141516
  1. <template>
  2. <article-form :type="wechatType" />
  3. </template>
  4. <script>
  5. import ArticleForm from '../../components/articleForm'
  6. export default {
  7. name: 'WeChatHeArticleEdit',
  8. components: { ArticleForm },
  9. data: function() {
  10. return {
  11. // wechatType 类型: 1采美,2呵呵商城
  12. wechatType: 2
  13. }
  14. }
  15. }
  16. </script>