This repository was archived by the owner on Jan 18, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +27
-11
lines changed Expand file tree Collapse file tree 4 files changed +27
-11
lines changed Original file line number Diff line number Diff line change 2727 "parse5" : " latest" ,
2828 "lru-cache" : " latest" ,
2929 "rollup-pluginutils" : " latest" ,
30- "Promise" : " latest" ,
3130 "promise" : " latest" ,
3231 "postcss" : " latest" ,
3332 "object-assign" : " latest" ,
Original file line number Diff line number Diff line change 1+ var evens = [ 2 , 4 , 6 , 8 ]
2+ var odds = evens . map ( v => v + 1 )
3+ var basic = { template : "<h1 :id=id @click=hi>hello</h1><input type=text>" ,
4+ data ( ) {
5+ return odds
6+ }
7+ }
8+
9+ module . exports = basic
Original file line number Diff line number Diff line change 1- <style >
2- html {
3- font-size : 20px ;
4- }
5- </style >
6-
71<template >
82 <h1 :id =" id" @click =" hi" >hello</h1 >
93 <input type =" text" >
104</template >
115
126<script >
13- class Test {
14- ok () {}
15- }
16-
177var evens = [2 ,4 ,6 ,8 ]
188var odds = evens .map (v => v + 1 )
199export default {
Original file line number Diff line number Diff line change 1+ <template >
2+ <h1 :id =" id" @click =" hi" >hello</h1 >
3+ <input type =" text" >
4+ </template >
5+
6+ <script >
7+ class Test {
8+ ok () {}
9+ }
10+
11+ var evens = [2 ,4 ,6 ,8 ]
12+ var odds = evens .map (v => v + 1 )
13+ export default {
14+ data () {
15+ return odds
16+ }
17+ }
18+ </script >
You can’t perform that action at this time.
0 commit comments