質問編集履歴

2

ご指摘いただいた箇所について追記

2019/02/02 06:07

投稿

hasshy
hasshy

スコア102

test CHANGED
File without changes
test CHANGED
@@ -510,6 +510,56 @@
510
510
 
511
511
 
512
512
 
513
+ ### index.js(エントリーポイントに使用しているjs)
514
+
515
+
516
+
517
+ ```js
518
+
519
+ import Vue from 'vue'
520
+
521
+ import App from './App'
522
+
523
+
524
+
525
+ new Vue({
526
+
527
+ el: '#app',
528
+
529
+ components: { App },
530
+
531
+ template: '<app/>'
532
+
533
+ })
534
+
535
+
536
+
537
+ ```
538
+
539
+
540
+
541
+ ### stylusのファイルについて
542
+
543
+ stylusで現在コードがあるのは、common.stylのみですので、こちらを記載します。
544
+
545
+
546
+
547
+ ```stylus
548
+
549
+ #main
550
+
551
+ color: red;
552
+
553
+ width: 100%;
554
+
555
+ border: 1px
556
+
557
+ ```
558
+
559
+
560
+
561
+
562
+
513
563
  ## 実現出来ている事
514
564
 
515
565
  前述した内容と重複しますが次の事は出来ています。

1

タイトルが途中だったため書き直し。

2019/02/02 06:07

投稿

hasshy
hasshy

スコア102

test CHANGED
@@ -1 +1 @@
1
- 【webpack】別ファイルのstylusを
1
+ 【webpack】別ファイルのstylusファイルビルドするconfigの書き方について
test CHANGED
File without changes