1234567891011121314151617181920212223 |
- <template >
- <h1 >{{greeting}} world</h1 >
- <script>kikoo ( ) </script>
- </template >
- <script>
- module . exports =
- {data : function () {return {
- greeting: "Hello"
- }}
- }
- </script>
- <style scoped >
- p { font-size : 2em ; text-align : center ; }
- </style >
- <style lang="postcss" >
- p { font-size : 2em ; text-align : center ; }
- </style >
|