| 
									
										
										
										
											2017-06-19 07:14:14 +00:00
										 |  |  | <!DOCTYPE html> | 
					
						
							|  |  |  | <!-- xlsx.js (C) 2013-present  SheetJS http://sheetjs.com --> | 
					
						
							|  |  |  | <!-- vim: set ts=2: --> | 
					
						
							| 
									
										
										
										
											2017-09-12 20:02:06 +00:00
										 |  |  | <html> | 
					
						
							| 
									
										
										
										
											2017-06-19 07:14:14 +00:00
										 |  |  | <head> | 
					
						
							|  |  |  | 	<title>SheetJS + VueJS2</title> | 
					
						
							|  |  |  | 	<!-- Vue 2 --> | 
					
						
							|  |  |  | 	<script src="https://unpkg.com/vue@2.x"></script> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-03 20:46:32 +00:00
										 |  |  | 	<!-- Various shims --> | 
					
						
							|  |  |  | 	<script src="shim.js"></script> | 
					
						
							| 
									
										
										
										
											2017-06-19 07:14:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	<!-- SheetJS js-xlsx library --> | 
					
						
							|  |  |  | 	<script src="xlsx.full.min.js"></script> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<!-- SheetJS Vue components --> | 
					
						
							|  |  |  | 	<script src="SheetJS-vue.js"></script> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <style> | 
					
						
							|  |  |  | .grid1 { | 
					
						
							|  |  |  | 	width: 500px; | 
					
						
							|  |  |  | 	height: 400px; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | </style> | 
					
						
							|  |  |  | </head> | 
					
						
							|  |  |  | <body> | 
					
						
							|  |  |  | <pre> | 
					
						
							|  |  |  | <b><a href="http://sheetjs.com">SheetJS + VueJS2 demo</a></b> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The core library can be used as-is in Vue applications. | 
					
						
							|  |  |  | The <a href="https://github.com/sheetjs/js-xlsx">Community Edition README</a> details some common use cases. | 
					
						
							|  |  |  | We also have some <a href="http://sheetjs.com/demos/">more public demos</a> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | This demo shows a sample Vue component "html-preview" that: | 
					
						
							|  |  |  | - displays a file input that accepts a spreadsheet file | 
					
						
							|  |  |  | - draws the first worksheet of a submitted file as HTML | 
					
						
							|  |  |  | - presents an export button to generate XLSX files | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <a href="https://obamawhitehouse.archives.gov/sites/default/files/omb/budget/fy2014/assets/receipts.xls">Sample Spreadsheet</a> | 
					
						
							|  |  |  | </pre> | 
					
						
							| 
									
										
										
										
											2017-09-12 20:02:06 +00:00
										 |  |  | <script type="text/javascript"> | 
					
						
							|  |  |  | 	var _gaq = _gaq || []; | 
					
						
							|  |  |  | 	_gaq.push(['_setAccount', 'UA-36810333-1']); | 
					
						
							|  |  |  | 	_gaq.push(['_trackPageview']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	(function() { | 
					
						
							|  |  |  | 		var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | 
					
						
							|  |  |  | 		ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | 
					
						
							|  |  |  | 		var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); | 
					
						
							|  |  |  | 	})(); | 
					
						
							|  |  |  | </script> | 
					
						
							| 
									
										
										
										
											2017-06-19 07:14:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | <div id="app"> | 
					
						
							|  |  |  | 	<html-preview></html-preview> | 
					
						
							|  |  |  | </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <script lang="javascript"> | 
					
						
							|  |  |  | var app = new Vue({ el: '#app' }); | 
					
						
							|  |  |  | </script> | 
					
						
							|  |  |  | </body> | 
					
						
							|  |  |  | </html> | 
					
						
							|  |  |  | 
 |