|  1 |    initial version    |  
It suffices to use square brackets filled with the indices (as integers, not as x or y) of the component you are interested in:
sage: domega[0,1]
-2*y
 Notice that the result is a coordinate function. To get the underlying symbolic expression (to be used for instance in some integration) you have to apply the method expr() atop of it: 
sage: domega[0,1].expr()
-2*y
 
 
                
                Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.